aboutsummaryrefslogtreecommitdiff
path: root/after
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-30 00:04:11 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-30 00:04:11 +1300
commit2844cb305349e3bcb5a95a54003ab9c8c8f57af8 (patch)
treee703f577850a392d1a0ee2b1530288be622b6766 /after
parentMerge branch 'release/v1.1.0' into develop (diff)
downloadvim-make-target-2844cb305349e3bcb5a95a54003ab9c8c8f57af8.tar.gz
vim-make-target-2844cb305349e3bcb5a95a54003ab9c8c8f57af8.zip
Remove unneeded <7.0 variable concatenation syntax
Diffstat (limited to 'after')
-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)'