@@ 23,8 23,9 @@ setlocal fo-=t fo+=croql
compiler hare
-" The following of this file was written by Sebastian LaVine.
-
+" These leader bindings were added by Sebastian LaVine.
nnoremap <leader>b :!hare build<CR>
nnoremap <leader>r :!hare run<CR>
nnoremap <leader>e :!hare run .<space>
+
+" vim: tabstop=2 shiftwidth=2 expandtab
@@ 27,12 27,13 @@ setlocal cinoptions=L0,:0,(s,m1,ks,j1,J1,*0,#1
" 0{ -> { at beginning of line
" 0} -> } at beginning of line
" 0) -> ) at beginning of line
+" 0] -> ] at beginning of line
" !^F -> <C-f> (not inserted)
" o -> <CR> or `o` command
" O -> `O` command
" e -> else
" 0=case -> case
-setlocal indentkeys=0{,0},0),!^F,o,O,e,0=case
+setlocal indentkeys=0{,0},0),0],!^F,o,O,e,0=case
setlocal cinwords=if,else,for,switch,match
@@ 78,4 78,5 @@ hi def link hareType Type
hi def link hareSpaceError Error
autocmd InsertEnter * hi link hareSpaceError NONE
autocmd InsertLeave * hi link hareSpaceError Error
+
" vim: tabstop=8 shiftwidth=2 expandtab