Added the "let" keyword

This commit is contained in:
silvetie 2019-03-02 22:53:41 +09:00 committed by zah
commit 88f5e708a7

View file

@ -118,7 +118,7 @@ function! GetNimIndent(lnum)
return plindent + &sw return plindent + &sw
endif endif
if pline =~ '\(type\|import\|const\|var\)\s*$' if pline =~ '\(type\|import\|const\|var\|let\)\s*$'
\ || pline =~ '=\s*\(object\|enum\|tuple\|concept\)' \ || pline =~ '=\s*\(object\|enum\|tuple\|concept\)'
return plindent + &sw return plindent + &sw
endif endif