aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-05-30 22:38:44 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-05-30 22:38:44 +1200
commitfab7b8860ddd8741e570bc0d988aee04006b2e2b (patch)
treeb6fa50bbb7beed801abbd779422cf704fa5d56b1
parentUse _save suffix for option caching variable (diff)
parentBump VERSION (diff)
downloaddotfiles-fab7b8860ddd8741e570bc0d988aee04006b2e2b.tar.gz
dotfiles-fab7b8860ddd8741e570bc0d988aee04006b2e2b.zip
Merge branch 'hotfix/v0.34.1' into develop
* hotfix/v0.34.1: Bump VERSION Remove stray echo from Vim plugin
-rw-r--r--VERSION4
-rw-r--r--vim/plugin/insert_suspend_hlsearch.vim1
2 files changed, 2 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index 88a8e216..fd7c31de 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v0.34.0
-Sun May 27 22:13:33 UTC 2018
+tejr dotfiles v0.34.1
+Wed May 30 22:06:44 NZST 2018
diff --git a/vim/plugin/insert_suspend_hlsearch.vim b/vim/plugin/insert_suspend_hlsearch.vim
index 378febc8..e7e2664d 100644
--- a/vim/plugin/insert_suspend_hlsearch.vim
+++ b/vim/plugin/insert_suspend_hlsearch.vim
@@ -19,7 +19,6 @@ let g:loaded_insert_suspend_hlsearch = 1
" into a script variable; if it's enabled, suspend it
function s:InsertEnter()
let s:hlsearch = &hlsearch
- echo &hlsearch
if s:hlsearch
set nohlsearch
endif