diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-05-30 22:38:44 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-05-30 22:38:44 +1200 |
commit | fab7b8860ddd8741e570bc0d988aee04006b2e2b (patch) | |
tree | b6fa50bbb7beed801abbd779422cf704fa5d56b1 /vim/plugin | |
parent | Use _save suffix for option caching variable (diff) | |
parent | Bump VERSION (diff) | |
download | dotfiles-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
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 |