aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-05-30 22:04:53 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-05-30 22:04:53 +1200
commit698b1d9a03b8331565804c629787ab9d461b0726 (patch)
treed0112eb7de6cf180a0864ba18c8f71ba84c4200d
parentMerge branch 'release/v0.34.0' (diff)
downloaddotfiles-698b1d9a03b8331565804c629787ab9d461b0726.tar.gz
dotfiles-698b1d9a03b8331565804c629787ab9d461b0726.zip
Remove stray echo from Vim plugin
This was probably left in during debugging. Because 'showmode' hides it, it didn't get noticed.
-rw-r--r--vim/plugin/insert_suspend_hlsearch.vim1
1 files changed, 0 insertions, 1 deletions
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