diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-12 13:16:01 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-12 13:16:01 +1200 |
commit | 309d2dad744e557b6f3370c400b37760b9631811 (patch) | |
tree | fa1dc2f2d47d8b6512467a9ac5e1b69beab2ba2c /after/ftplugin/make/target.vim | |
parent | Escape target if supported (diff) | |
download | vim-make-target-309d2dad744e557b6f3370c400b37760b9631811.tar.gz vim-make-target-309d2dad744e557b6f3370c400b37760b9631811.zip |
Parenthesize map target
Diffstat (limited to 'after/ftplugin/make/target.vim')
-rw-r--r-- | after/ftplugin/make/target.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/after/ftplugin/make/target.vim b/after/ftplugin/make/target.vim index dc1663a..daab321 100644 --- a/after/ftplugin/make/target.vim +++ b/after/ftplugin/make/target.vim @@ -23,7 +23,7 @@ let b:undo_ftplugin = b:undo_ftplugin " Define normal mode mapping target nnoremap <buffer> <silent> <unique> - \ <Plug>MakeTarget + \ <Plug>(MakeTarget) \ :<C-U>call make#target#Make()<CR> let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap <buffer> <Plug>MakeTarget' |