aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-03 20:02:54 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-03 20:02:54 +1300
commite1c290329ee47d5595c6ec195814c03a9b4ac7db (patch)
tree5a3749980b2e7d3c51f354c4aa39567b4d9b8a77 /vim
parentMerge branch 'feature/d2u-u2d-con...' into develop (diff)
parentDon't show search option state on mode changes (diff)
downloaddotfiles-e1c290329ee47d5595c6ec195814c03a9b4ac7db.tar.gz
dotfiles-e1c290329ee47d5595c6ec195814c03a9b4ac7db.zip
Merge branch 'hotfix/v0.4.1' into develop
* hotfix/v0.4.1: Don't show search option state on mode changes Bump version number to 0.4.1
Diffstat (limited to 'vim')
-rw-r--r--vim/config/search.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/config/search.vim b/vim/config/search.vim
index 1d1039e2..66b81ab0 100644
--- a/vim/config/search.vim
+++ b/vim/config/search.vim
@@ -19,8 +19,8 @@ if has('extra_search')
if has('autocmd')
augroup dotfiles_highlight
autocmd!
- silent! autocmd InsertEnter * setlocal nohlsearch nohlsearch?
- silent! autocmd InsertLeave * setlocal hlsearch hlsearch?
+ silent! autocmd InsertEnter * setlocal nohlsearch
+ silent! autocmd InsertLeave * setlocal hlsearch
augroup END
endif
endif