vim-tomo/indent/tomo.vim

40 lines
830 B
VimL
Raw Permalink Normal View History

2024-11-25 22:03:12 -08:00
" Language: Tomo
2022-11-11 18:25:19 -08:00
" Maintainer: Bruce Hill <bruce@bruce-hill.com>
" License: WTFPL
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
setlocal autoindent
2024-11-25 22:03:12 -08:00
setlocal indentexpr=GetTomoIndent()
2022-11-11 18:25:19 -08:00
setlocal indentkeys+=-:
" Only define the function once.
2024-11-25 22:03:12 -08:00
if exists("*GetTomoIndent")
2022-11-11 18:25:19 -08:00
finish
endif
2024-11-25 22:03:12 -08:00
function! GetTomoIndent()
2022-11-11 18:25:19 -08:00
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)
2024-11-25 22:01:01 -08:00
if previous =~ '\(^\s*\<\(for\|while\|if\|else\|elseif\|between\|def\)\>\)\|^[^#]*[:=]\s*$'
2022-11-11 18:25:19 -08:00
let ind = ind + &tabstop
endif
if line =~ '^\s*\(else\|elseif\|between\)$'
return current_ind - &tabstop
endif
if ind == indent(previousNum)
return current_ind
endif
return ind
endfunction