summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-03-27 09:02:11 +0000
committerBram Moolenaar <Bram@vim.org>2007-03-27 09:02:11 +0000
commit39353fdbec5558d5faa33cf35ff30ab96e2c366b (patch)
treebef6465f4900010ff666b9330c9b76ec21b03abf /runtime
parent5b6b1cae34a9e997bf185c269ba9e6be5b420008 (diff)
downloadvim-git-39353fdbec5558d5faa33cf35ff30ab96e2c366b.tar.gz
updated for version 7.0-222v7.0.222
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/indent.txt9
1 files changed, 7 insertions, 2 deletions
diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt
index e00358334..eefc3a46e 100644
--- a/runtime/doc/indent.txt
+++ b/runtime/doc/indent.txt
@@ -1,4 +1,4 @@
-*indent.txt* For Vim version 7.0. Last change: 2006 Apr 30
+*indent.txt* For Vim version 7.0. Last change: 2007 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -434,10 +434,15 @@ assume a 'shiftwidth' of 4.
limits the time needed to search for the start of a comment.
(default 30 lines).
+ #N When N is non-zero recognize shell/Perl comments, starting with
+ '#'. Default N is zero: don't recognizes '#' comments. Note
+ that lines starting with # will still be seen as preprocessor
+ lines.
+
The defaults, spelled out in full, are:
cinoptions=>s,e0,n0,f0,{0,}0,^0,:s,=s,l0,b0,gs,hs,ps,ts,is,+s,c3,C0,
- /0,(2s,us,U0,w0,W0,m0,j0,)20,*30
+ /0,(2s,us,U0,w0,W0,m0,j0,)20,*30,#0
Vim puts a line in column 1 if:
- It starts with '#' (preprocessor directives), if 'cinkeys' contains '#'.