aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/vim/lint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/vim/lint.vim')
-rw-r--r--vim/after/ftplugin/vim/lint.vim18
1 files changed, 12 insertions, 6 deletions
diff --git a/vim/after/ftplugin/vim/lint.vim b/vim/after/ftplugin/vim/lint.vim
index 5e4ea601..1b557593 100644
--- a/vim/after/ftplugin/vim/lint.vim
+++ b/vim/after/ftplugin/vim/lint.vim
@@ -4,8 +4,10 @@ if exists('b:did_ftplugin_vim_lint') || &compatible
finish
endif
let b:did_ftplugin_vim_lint = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_vim_lint'
+if exists('b:undo_ftplugin')
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|unlet b:did_ftplugin_vim_lint'
+endif
" Set up a mapping for the linter, if we're allowed
if !exists('g:no_plugin_maps') && !exists('g:no_vim_maps')
@@ -14,16 +16,20 @@ if !exists('g:no_plugin_maps') && !exists('g:no_vim_maps')
nnoremap <buffer> <silent> <unique>
\ <Plug>VimLint
\ :<C-U>write !vint -s /dev/stdin<CR>
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <Plug>VimLint'
+ if exists('b:undo_ftplugin')
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|nunmap <buffer> <Plug>VimLint'
+ endif
" If there isn't a key mapping already, use a default one
if !hasmapto('<Plug>VimLint')
nmap <buffer> <unique>
\ <LocalLeader>l
\ <Plug>VimLint
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <LocalLeader>l'
+ if exists('b:undo_ftplugin')
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|nunmap <buffer> <LocalLeader>l'
+ endif
endif
endif