From owner-freebsd-doc@freebsd.org Sat Jul 18 22:13:37 2015 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 695CA9A417D for ; Sat, 18 Jul 2015 22:13:37 +0000 (UTC) (envelope-from trig4800@gmail.com) Received: from mail-pa0-x22b.google.com (mail-pa0-x22b.google.com [IPv6:2607:f8b0:400e:c03::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3E6621AAF for ; Sat, 18 Jul 2015 22:13:37 +0000 (UTC) (envelope-from trig4800@gmail.com) Received: by pabkd10 with SMTP id kd10so8123595pab.2 for ; Sat, 18 Jul 2015 15:13:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=OiPdZRQI3/cTrdc6GWjwi2weclrE05OownvT/g7+BJ0=; b=hfAROm9pgANODuwTgSujM3DkjAz+khmG0oEiVTK9BEyyPTOP+6K62o0n+w723+35w/ 9hBtL3E0orDVjMD5OYGS7H6OJfnFeXunLVu8B6K8QQRJlZXEPVVmDbvw2EAYH/HcKt7F S9Uu0Do+GshFJhw53EBeSDWhtA1Ef7suDXQdZZuc4LpvWKkyIsHxPXUcF5QjgjcBvbk1 a2Mz5tP0maMvnBGkSfrLLG2XuLZcIC9qJA45aRDPoNgas15nc0Uzt2ZrVXMORNAm30oh jKMPTqF1IEilwVBAvGgeyvAWh6yulNqc+bwVe328SWk7OCSXhE4O22V93MDwG8qjUrLG 1EyQ== X-Received: by 10.66.66.130 with SMTP id f2mr43936022pat.120.1437257616746; Sat, 18 Jul 2015 15:13:36 -0700 (PDT) Received: from [10.0.1.5] ([121.167.148.73]) by smtp.googlemail.com with ESMTPSA id r4sm15330736pap.8.2015.07.18.15.13.35 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 18 Jul 2015 15:13:36 -0700 (PDT) Message-ID: <55AACF8D.3060000@gmail.com> Date: Sun, 19 Jul 2015 07:13:33 +0900 From: Hoyoung Kim User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-doc@freebsd.org Subject: What is the proper indent style for FDP? Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Jul 2015 22:13:37 -0000 Hello. I'm curious about indentation style. Which is the proper one when dealing with FDP xml files? The original FDP files follow the style like this: We have tried to keep the number of forward references in the text to a minimum so that you can read this section of the Handbook from front to back with the minimum page flipping required. This is another example: Introduce you to X, the &unix; windowing system, and detail how to configure a desktop environment that makes you more productive. However, when I press P in Vim Visual mode to reformat selected text, the style changes like this: We have tried to keep the number of forward references in the text to a minimum so that you can read this section of the Handbook from front to back with the minimum page flipping required. And this: Introduce you to X, the &unix; windowing system, and detail how to configure a desktop environment that makes you more productive. All the original files follow the former style, but FDP Primer suggests the latter style. (https://www.freebsd.org/doc/en_US.ISO8859-1/books/fdp-primer/editor-config.html#editor-config-vim) I want to know whether the latter style is allowed or not. Should I manually indent paragraphs after pressing P? Thanks.