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

        





































                                         
if !polyglot#util#IsEnabled('odin', expand('<sfile>:p'))
  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