vim-nomsu/ftplugin/nomsu.vim

24 lines
540 B
VimL
Raw Normal View History

2017-09-12 23:00:42 -07:00
" Language: Nomsu
" Maintainer: Bruce Hill <bruce@bruce-hill.com>
" License: WTFPL
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
setlocal formatoptions-=t
2018-12-18 15:33:25 -08:00
setlocal iskeyword+=$
setlocal cpoptions+=M
2018-07-27 13:15:26 -07:00
setlocal foldmethod=indent
setlocal formatprg=nomsu\ -t\ format\ -q\ -
setlocal expandtab
setlocal tabstop=4
setlocal shiftwidth=0
2021-02-07 19:19:46 -08:00
setlocal commentstring=//\ %s
2018-07-27 13:20:09 -07:00
normal zR
2017-09-12 23:00:42 -07:00
command! NomsuHideTests :g/^\s*test:$/exe "normal! jzc"
let b:undo_ftplugin = "setlocal formatoptions< iskeyword< cpoptions< foldmethod<"