diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-12 13:29:22 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-12 13:29:22 +1200 |
commit | f4fe940526c9351990c9966eb6828f315c833117 (patch) | |
tree | 08a6c435ed0157bb904aee639e96ad3227be2388 /after/ftplugin/make/target.vim | |
parent | Merge branch 'hotfix/v1.0.1' (diff) | |
parent | Bump VERSION (diff) | |
download | vim-make-target-1.0.2.tar.gz (sig) vim-make-target-1.0.2.zip |
Merge branch 'hotfix/v1.0.2'v1.0.2
* hotfix/v1.0.2:
Bump VERSION
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)' |