aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-13 10:39:43 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-13 10:39:43 +1200
commit1bf71e686af4dd1a39afd2ce994771f8aca71110 (patch)
treeb6339d1cacffa11553fac51a0f51de29859bed31 /vim/after/ftplugin
parentRemove bell disabling in Vim (diff)
downloaddotfiles-1bf71e686af4dd1a39afd2ce994771f8aca71110.tar.gz
dotfiles-1bf71e686af4dd1a39afd2ce994771f8aca71110.zip
Add missing angle bracket for Vim ftplugin undo
Diffstat (limited to 'vim/after/ftplugin')
-rw-r--r--vim/after/ftplugin/vim.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/vim.vim b/vim/after/ftplugin/vim.vim
index 2b8ddbb9..ca6b01b0 100644
--- a/vim/after/ftplugin/vim.vim
+++ b/vim/after/ftplugin/vim.vim
@@ -6,7 +6,7 @@ endif
" Use Vint as a syntax checker
compiler vint
let b:undo_ftplugin .= '|unlet b:current_compiler'
- \ . '|setlocal errorformat< makeprg'
+ \ . '|setlocal errorformat< makeprg<'
" Stop here if the user doesn't want ftplugin mappings
if exists('g:no_plugin_maps') || exists('g:no_vim_maps')