From 2844cb305349e3bcb5a95a54003ab9c8c8f57af8 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 30 Nov 2018 00:04:11 +1300 Subject: Remove unneeded <7.0 variable concatenation syntax --- after/ftplugin/make/target.vim | 6 ++---- 1 file 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 \ (MakeTarget) \ :call make#target#Make() -let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap (MakeTarget)' +let b:undo_ftplugin .= '|nunmap (MakeTarget)' -- cgit v1.2.3 From c76fbecbfd9c2fe3d6d638e4747766fe5c4c588c Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 30 Nov 2018 00:05:17 +1300 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9084fa2..26aaba0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +1.2.0 -- cgit v1.2.3