diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-09-02 19:12:26 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-09-02 19:12:26 +0000 |
commit | d4755bb0e04fca334675f1503bd6474b017a9bba (patch) | |
tree | 8be8df859191e78ee9eef80d3b341fd5d0c1b81b /runtime/indent | |
parent | 269ec658f0fad22b2bf9f71b06a4e6e10277f0e5 (diff) | |
download | vim-git-d4755bb0e04fca334675f1503bd6474b017a9bba.tar.gz |
updated for version 7.0014
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/lua.vim | 23 | ||||
-rw-r--r-- | runtime/indent/vim.vim | 10 |
2 files changed, 20 insertions, 13 deletions
diff --git a/runtime/indent/lua.vim b/runtime/indent/lua.vim index 37e397e37..2ea16dbf8 100644 --- a/runtime/indent/lua.vim +++ b/runtime/indent/lua.vim @@ -1,11 +1,13 @@ " Vim indent file " Language: Lua script -" Maintainer: Marcus Aurelius Farias <marcuscf@vant.com.br> -" First Author: Max Ischenko <mfi@ukr.net> -" Last Change: 2003 Jan 20 +" Maintainer: Marcus Aurelius Farias <marcus.cf 'at' bol.com.br> +" First Author: Max Ischenko <mfi 'at' ukr.net> +" Last Change: 2004 Aug 29 " Only define the function once. -if exists("*GetLuaIndent") | finish | endif +if exists("*GetLuaIndent") + finish +endif setlocal indentexpr=GetLuaIndent() @@ -28,21 +30,22 @@ function! GetLuaIndent() " function, if, for, while, repeat, else, elseif, '{' let ind = indent(lnum) let flag = 0 - if getline(lnum) =~ '^\s*\(function\>\|if\>\|for\>\|while\>\|repeat\>\|else\>\|elseif\>\|do\>\)' || getline(lnum) =~ '{\s*$' || getline(lnum) =~ '\s*=\s*function' - let ind = ind + &sw + let prevline = getline(lnum) + if prevline =~ '^\s*\%(if\>\|for\>\|while\>\|repeat\>\|else\>\|elseif\>\|do\>\)' || prevline =~ '{\s*$' || prevline =~ '\<function\>\s*\%(\k\|[.:]\)\{-}\s*(' + let ind = ind + &shiftwidth let flag = 1 endif " Subtract a 'shiftwidth' after lines ending with " 'end' when they begin with while, if, for, etc. - if flag == 1 && getline(lnum) =~ '\<end\>\|\<until\>' - let ind = ind - &sw + if flag == 1 && prevline =~ '\<end\>\|\<until\>' + let ind = ind - &shiftwidth endif " Subtract a 'shiftwidth' on end, else (and elseif), until and '}' " This is the part that requires 'indentkeys'. - if getline(v:lnum) =~ '^\s*\(end\|else\|until\|}\)' - let ind = ind - &sw + if getline(v:lnum) =~ '^\s*\%(end\|else\|until\|}\)' + let ind = ind - &shiftwidth endif return ind diff --git a/runtime/indent/vim.vim b/runtime/indent/vim.vim index 0de77748c..08d8ebf63 100644 --- a/runtime/indent/vim.vim +++ b/runtime/indent/vim.vim @@ -1,7 +1,7 @@ " Vim indent file " Language: Vim script " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2003 May 25 +" Last Change: 2004 Sep 02 " Only load this indent file when no other was loaded. if exists("b:did_indent") @@ -36,10 +36,14 @@ function GetVimIndent() " Add a 'shiftwidth' after :if, :while, :try, :catch, :finally, :function " and :else. Add it three times for a line that starts with '\' after - " a line that doesn't. + " a line that doesn't (or g:vim_indent_cont if it exists). let ind = indent(lnum) if getline(v:lnum) =~ '^\s*\\' && v:lnum > 1 && getline(lnum) !~ '^\s*\\' - let ind = ind + &sw * 3 + if exists("g:vim_indent_cont") + let ind = ind + g:vim_indent_cont + else + let ind = ind + &sw * 3 + endif elseif getline(lnum) =~ '\(^\||\)\s*\(if\|wh\%[ile]\|try\|cat\%[ch]\|fina\%[lly]\|fu\%[nction]\|el\%[seif]\)\>' let ind = ind + &sw elseif getline(lnum) =~ '^\s*aug\%[roup]' && getline(lnum) !~ '^\s*aug\%[roup]\s*!\=\s\+END' |