summaryrefslogblamecommitdiffstats
path: root/indent/odin.vim
blob: f0a4cba0b67ed5d959457c9ce3a52e87fc2e069a (plain) (tree)
1
2
3
                                          

        





































                                         
if has_key(g:polyglot_is_disabled, 'odin')
  finish
endif

if exists("b:did_indent")
  finish
endif
let b:did_indent = 1

setlocal nosmartindent
setlocal nolisp
setlocal autoindent

setlocal indentexpr=GetOdinIndent(v:lnum)

if exists("*GetOdinIndent")
  finish
endif

function! GetOdinIndent(lnum)
  let prev = prevnonblank(a:lnum-1)

  if prev == 0
    return 0
  endif

  let prevline = getline(prev)
  let line = getline(a:lnum)

  let ind = indent(prev)

  if prevline =~ '[({]\s*$'
    let ind += &sw
  endif

  if line =~ '^\s*[)}]'
    let ind -= &sw
  endif

  return ind
endfunction