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

39 lines
987 B
VimL
Raw Normal View History

" Vim indent file
" Language: J
" Maintainer: David Bürgin <676c7473@gmail.com>
2014-03-22 21:02:50 +01:00
" URL: https://github.com/glts/vim-j
" Last Change: 2014-03-17
2014-03-22 21:02:50 +01:00
if exists('b:did_indent')
finish
endif
let b:did_indent = 1
setlocal indentexpr=GetJIndent()
setlocal indentkeys-=0{,0},\:,0#
setlocal indentkeys+=0),=case.,=catch.,=catchd.,=catcht.,=do.,=else.,=elseif.,=end.,=fcase.
2014-03-22 21:02:50 +01:00
let b:undo_indent = 'setlocal indentkeys< indentexpr<'
2014-03-22 21:02:50 +01:00
if exists('*GetJIndent')
finish
endif
function GetJIndent()
let prevlnum = prevnonblank(v:lnum-1)
if prevlnum == 0
return 0
endif
let indent = indent(prevlnum)
if getline(prevlnum) =~# '^\s*\%(case\|catch[dt]\=\|do\|else\%(if\)\=\|fcase\|for\%(_\a\k*\)\=\|if\|select\|try\|whil\%(e\|st\)\)\.'
if getline(prevlnum) !~# '\<end\.'
2014-03-22 21:02:50 +01:00
let indent += shiftwidth()
endif
endif
2014-03-22 21:02:50 +01:00
if getline(v:lnum) =~# '^\s*\%(\%(case\|catch[dt]\=\|do\|else\%(if\)\=\|end\|fcase\)\.\)\|)'
let indent -= shiftwidth()
endif
return indent
endfunction