diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-30 00:04:11 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-30 00:04:11 +1300 |
commit | 2844cb305349e3bcb5a95a54003ab9c8c8f57af8 (patch) | |
tree | e703f577850a392d1a0ee2b1530288be622b6766 | |
parent | Merge branch 'release/v1.1.0' into develop (diff) | |
download | vim-make-target-2844cb305349e3bcb5a95a54003ab9c8c8f57af8.tar.gz vim-make-target-2844cb305349e3bcb5a95a54003ab9c8c8f57af8.zip |
Remove unneeded <7.0 variable concatenation syntax
-rw-r--r-- | after/ftplugin/make/target.vim | 6 |
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)' |