mirror of
https://github.com/urbit/shrub.git
synced 2024-12-26 13:31:36 +03:00
32 lines
456 B
VimL
32 lines
456 B
VimL
|
" Public Domain
|
||
|
" Credit Goes to fode
|
||
|
|
||
|
if exists("b:did_indent")
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
let b:did_indent = 1
|
||
|
|
||
|
|
||
|
setlocal nolisp
|
||
|
setlocal autoindent
|
||
|
|
||
|
if exists("*HoonIndent")
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
function! HoonIndent(lnum)
|
||
|
let prevlnum = prevnonblank(a:lnum-1)
|
||
|
if prevlnum == 0
|
||
|
return 0
|
||
|
endif
|
||
|
let prevl = substitute(getline(prevlnum),'::.*$','','')
|
||
|
|
||
|
if prevl =~ '\+\+\s*\w*\s*$'
|
||
|
" luslus operator
|
||
|
let ind += &sw
|
||
|
endif
|
||
|
return ind
|
||
|
endfunction
|
||
|
|