From ad69b8aca286a9aa5f95f920199370e5512abcf7 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 29 Jun 2018 23:24:06 +1200 Subject: Use ftplugins for filetype mappings instead --- vim/after/ftplugin/sh/maps.vim | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 vim/after/ftplugin/sh/maps.vim (limited to 'vim/after/ftplugin/sh/maps.vim') diff --git a/vim/after/ftplugin/sh/maps.vim b/vim/after/ftplugin/sh/maps.vim new file mode 100644 index 00000000..e93a84c4 --- /dev/null +++ b/vim/after/ftplugin/sh/maps.vim @@ -0,0 +1,23 @@ +" sh/maps.vim: tejr's mappings for 'sh' filetypes + +" Don't load if running compatible or too old +if &compatible || v:version < 700 + finish +endif + +" Don't load if already loaded +if exists('b:did_ftplugin_sh_maps') + finish +endif + +" Flag as loaded +let b:did_ftplugin_sh_maps = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_sh_maps' + +" Set mappings +nmap c ShCheck +nmap l ShLint +let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap c' + \ . '|nunmap l' -- cgit v1.2.3