aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-03 19:59:50 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-03 19:59:50 +1300
commitdb5330a8b557b5a69a8190878a1654b2ca047cbd (patch)
treee765c0f813c1e321e873e2209c5c3aac98269093
parentMerge branch 'release/v0.4.0' (diff)
parentDon't show search option state on mode changes (diff)
downloaddotfiles-db5330a8b557b5a69a8190878a1654b2ca047cbd.tar.gz
dotfiles-db5330a8b557b5a69a8190878a1654b2ca047cbd.zip
Merge branch 'hotfix/v0.4.1'v0.4.1
* hotfix/v0.4.1: Don't show search option state on mode changes Bump version number to 0.4.1
-rw-r--r--VERSION4
-rw-r--r--vim/config/search.vim4
2 files changed, 4 insertions, 4 deletions
diff --git a/VERSION b/VERSION
index b787a6dd..7c5ed224 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v0.4.0
-Thu Nov 2 14:31:35 NZDT 2017
+tejr dotfiles v0.4.1
+Fri Nov 3 06:33:23 UTC 2017
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