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/html/maps.vim | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 vim/after/ftplugin/html/maps.vim (limited to 'vim/after/ftplugin/html/maps.vim') diff --git a/vim/after/ftplugin/html/maps.vim b/vim/after/ftplugin/html/maps.vim new file mode 100644 index 00000000..e355d0e6 --- /dev/null +++ b/vim/after/ftplugin/html/maps.vim @@ -0,0 +1,25 @@ +" html/maps.vim: tejr's mappings for 'html' 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_html_maps') + finish +endif + +" Flag as loaded +let b:did_ftplugin_html_maps = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_maps' + +" Set mappings +nmap l HtmlLint +nmap r HtmlUrlLink +nmap t HtmlTidy +let b:undo_ftplugin = b:undo_ftplugin + \ . '|nunmap l' + \ . '|nunmap r' + \ . '|nunmap t' -- cgit v1.2.3