summaryrefslogtreecommitdiffstats
path: root/runtime/indent/xf86conf.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-06-29 22:40:58 +0000
committerBram Moolenaar <Bram@vim.org>2005-06-29 22:40:58 +0000
commit42eeac3552c5a5ea10f24373f76b93633b6c8604 (patch)
tree902f3158470a3e9c53850708cf982c85c6338796 /runtime/indent/xf86conf.vim
parent24bbcfe8fe62ea43b1cea86243be4fdc8794140b (diff)
updated for version 7.0097v7.0097
Diffstat (limited to 'runtime/indent/xf86conf.vim')
-rw-r--r--runtime/indent/xf86conf.vim20
1 files changed, 7 insertions, 13 deletions
diff --git a/runtime/indent/xf86conf.vim b/runtime/indent/xf86conf.vim
index f9db1ba965..f1f1c8ed58 100644
--- a/runtime/indent/xf86conf.vim
+++ b/runtime/indent/xf86conf.vim
@@ -1,21 +1,16 @@
" Vim indent file
-" Language: XFree86 Configuration File
-" Maintainer: Nikolai Weibull <source@pcppopper.org>
-" URL: http://www.pcppopper.org/vim/indent/pcp/xf86conf/
-" Latest Revision: 2004-04-25
-" arch-tag: 8a42f7b6-5088-49cf-b15b-07696a91c015
+" Language: XFree86 Configuration File
+" Maintainer: Nikolai Weibull <nikolai+work.vim@bitwi.se>
+" Latest Revision: 2005-06-29
-" Only load this indent file when no other was loaded.
if exists("b:did_indent")
finish
endif
-
let b:did_indent = 1
setlocal indentexpr=GetXF86ConfIndent()
setlocal indentkeys=!^F,o,O,=End
-" Only define the function once.
if exists("*GetXF86ConfIndent")
finish
endif
@@ -28,15 +23,14 @@ function GetXF86ConfIndent()
endif
let ind = indent(lnum)
- let line = getline(lnum)
- if line =~? '^\s*\(Sub\)\=Section'
+ if getline(lnum) =~? '^\s*\(Sub\)\=Section\>'
let ind = ind + &sw
- elseif getline(v:lnum) =~? '^\s*End'
+ endif
+
+ if getline(v:lnum) =~? '^\s*End\>'
let ind = ind - &sw
endif
return ind
endfunction
-
-" vim: set sts=2 sw=2: