aboutsummaryrefslogtreecommitdiff
path: root/after/ftplugin/make/target.vim
diff options
context:
space:
mode:
Diffstat (limited to 'after/ftplugin/make/target.vim')
-rw-r--r--after/ftplugin/make/target.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/after/ftplugin/make/target.vim b/after/ftplugin/make/target.vim
index acb2dff..57c23d2 100644
--- a/after/ftplugin/make/target.vim
+++ b/after/ftplugin/make/target.vim
@@ -18,12 +18,10 @@ endif
" Flag as loaded
let b:did_ftplugin_make_target = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_make_target'
+let b:undo_ftplugin .= '|unlet b:did_ftplugin_make_target'
" Define normal mode mapping target
nnoremap <buffer> <silent> <unique>
\ <Plug>(MakeTarget)
\ :<C-U>call make#target#Make()<CR>
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|nunmap <buffer> <Plug>(MakeTarget)'
+let b:undo_ftplugin .= '|nunmap <buffer> <Plug>(MakeTarget)'