aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-30 00:05:29 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-30 00:05:29 +1300
commit71a5fa558b28e081bede012f075233924b0aee75 (patch)
tree6b46bb1a65f33337cfbd031d598fe6f2616a4ec6
parentMerge branch 'release/v1.1.0' (diff)
parentBump VERSION (diff)
downloadvim-make-target-71a5fa558b28e081bede012f075233924b0aee75.tar.gz
vim-make-target-71a5fa558b28e081bede012f075233924b0aee75.zip
Merge branch 'release/v1.2.0'v1.2.0
* release/v1.2.0: Remove unneeded <7.0 variable concatenation syntax
-rw-r--r--VERSION2
-rw-r--r--after/ftplugin/make/target.vim6
2 files changed, 3 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index 9084fa2..26aaba0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.1.0
+1.2.0
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)'