diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-12 13:28:45 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-12 13:28:45 +1200 |
commit | a21161a2facb3e032ee16470f88e13cb1c120e03 (patch) | |
tree | 1a5b82372fcce225e8c8c3a3335e42519310e7b4 /after/ftplugin/make/target.vim | |
parent | Merge branch 'hotfix/v1.0.1' (diff) | |
download | vim-make-target-a21161a2facb3e032ee16470f88e13cb1c120e03.tar.gz vim-make-target-a21161a2facb3e032ee16470f88e13cb1c120e03.zip |
Correct unmap
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 daab321..acb2dff 100644 --- a/after/ftplugin/make/target.vim +++ b/after/ftplugin/make/target.vim @@ -26,4 +26,4 @@ nnoremap <buffer> <silent> <unique> \ <Plug>(MakeTarget) \ :<C-U>call make#target#Make()<CR> let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap <buffer> <Plug>MakeTarget' + \ . '|nunmap <buffer> <Plug>(MakeTarget)' |