diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-05-30 22:04:53 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-05-30 22:04:53 +1200 |
commit | 698b1d9a03b8331565804c629787ab9d461b0726 (patch) | |
tree | d0112eb7de6cf180a0864ba18c8f71ba84c4200d /vim/plugin | |
parent | Merge branch 'release/v0.34.0' (diff) | |
download | dotfiles-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.
Diffstat (limited to 'vim/plugin')
-rw-r--r-- | vim/plugin/insert_suspend_hlsearch.vim | 1 |
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 |