vim-nomsu/indent/nomsu.vim

42 lines
901 B
VimL
Raw Normal View History

2017-09-12 23:00:42 -07:00
" Language: Nomsu
" Maintainer: Bruce Hill <bruce@bruce-hill.com>
" License: WTFPL
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
setlocal autoindent
setlocal indentexpr=GetNomsuIndent()
setlocal indentkeys+=.
" Only define the function once.
if exists("*GetNomsuIndent")
finish
endif
function! GetNomsuIndent()
let line = getline(v:lnum)
let current_ind = indent(v:lnum)
let previousNum = prevnonblank(v:lnum - 1)
let previous = getline(previousNum)
let ind = indent(previousNum)
2018-07-24 13:41:50 -07:00
if previous =~ '{\.\.}\s*\($\|#\)' || previous =~ '(\.\.)\s*\($\|#\)' || previous =~ ':\s*\($\|#\)'
2017-10-04 18:01:23 -07:00
\ || previous =~ '\[\.\.\]\s*\($\|#\)' || previous =~ '"\.\."\s*\($\|#\)'
2018-05-15 17:29:26 -07:00
\ || previous =~ '#$'
2017-09-12 23:00:42 -07:00
let ind += &tabstop
endif
if line =~ '^\s*\.\.$'
let ind -= &tabstop
endif
if ind == indent(previousNum)
return current_ind
endif
return ind
endfunction