0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/indent/tcl.vim

75 lines
1.6 KiB
VimL
Raw Normal View History

2004-06-13 20:20:40 +00:00
" Vim indent file
2005-07-04 22:49:24 +00:00
" Language: Tcl
" Maintainer: Nikolai Weibull <nikolai+work.vim@bitwi.se>
" Latest Revision: 2005-06-30
2004-06-13 20:20:40 +00:00
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
setlocal indentexpr=GetTclIndent()
2005-06-29 22:40:58 +00:00
setlocal indentkeys=0{,0},!^F,o,O,0]
2004-06-13 20:20:40 +00:00
if exists("*GetTclIndent")
finish
endif
2005-06-29 22:40:58 +00:00
function s:prevnonblanknoncomment(lnum)
2004-06-13 20:20:40 +00:00
let lnum = prevnonblank(a:lnum)
while lnum > 0
let line = getline(lnum)
if line !~ '^\s*\(#\|$\)'
break
endif
let lnum = prevnonblank(lnum - 1)
endwhile
return lnum
endfunction
2005-06-29 22:40:58 +00:00
function s:count_braces(lnum, count_open)
let n_open = 0
let n_close = 0
let line = getline(a:lnum)
2005-07-04 22:49:24 +00:00
let pattern = '[{}]'
2005-06-29 22:40:58 +00:00
let i = match(line, pattern)
while i != -1
2005-07-04 22:49:24 +00:00
if synIDattr(synID(a:lnum, i + 1, 0), 'name') !~ 'tcl\%(Comment\|String\)'
2005-06-29 22:40:58 +00:00
if line[i] == '{'
let n_open += 1
elseif line[i] == '}'
if n_open > 0
let n_open -= 1
else
let n_close += 1
endif
2004-06-13 20:20:40 +00:00
endif
endif
2005-06-29 22:40:58 +00:00
let i = match(line, pattern, i + 1)
2004-06-13 20:20:40 +00:00
endwhile
2005-06-29 22:40:58 +00:00
return a:count_open ? n_open : n_close
endfunction
2004-06-13 20:20:40 +00:00
2005-06-29 22:40:58 +00:00
function GetTclIndent()
2005-07-04 22:49:24 +00:00
let line = getline(v:lnum)
if line =~ '^\s*\*'
return cindent(v:lnum)
elseif line =~ '^\s*}'
return indent(v:lnum) - &sw
endif
2005-06-29 22:40:58 +00:00
let pnum = s:prevnonblanknoncomment(v:lnum - 1)
if pnum == 0
return 0
endif
2004-06-13 20:20:40 +00:00
2005-06-29 22:40:58 +00:00
let ind = indent(pnum) + s:count_braces(pnum, 1) * &sw
2004-06-13 20:20:40 +00:00
2005-07-04 22:49:24 +00:00
let pline = getline(pnum)
if pline =~ '}\s*$'
let ind -= (s:count_braces(pnum, 0) - (pline =~ '^\s*}' ? 1 : 0)) * &sw
2005-06-29 22:40:58 +00:00
endif
2004-06-13 20:20:40 +00:00
2005-07-04 22:49:24 +00:00
return ind
2004-06-13 20:20:40 +00:00
endfunction