aboutsummaryrefslogtreecommitdiff
path: root/mappings.vim
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2020-09-24 22:45:00 +0800
committerjdhao <jdhao@hotmail.com>2020-09-24 22:45:00 +0800
commitb0d5b9765e0a400b9b1a50b3dc7d4f9399a95a55 (patch)
tree4c419148b282d0dbcb9c47abb722f8dbebe124f3 /mappings.vim
parent9a8126c3571abdf9bcbd11f432c44e5b3b54c4a6 (diff)
parent42a92ffd6847b4f2784b1484c8f835fbb37f41f7 (diff)
Merge branch 'master' of https://github.com/jdhao/nvim-config
Diffstat (limited to 'mappings.vim')
-rw-r--r--mappings.vim3
1 files changed, 0 insertions, 3 deletions
diff --git a/mappings.vim b/mappings.vim
index 00e8b19..c2ba402 100644
--- a/mappings.vim
+++ b/mappings.vim
@@ -47,9 +47,6 @@ nnoremap<silent> \x :windo lclose <bar> cclose<CR>
" window, see https://stackoverflow.com/q/4465095/6064933
nnoremap <silent> \d :bprevious <bar> bdelete #<CR>
-" Toggle search highlight, see https://stackoverflow.com/a/26504944/6064933
-nnoremap <silent><expr> <Leader>hl (&hls && v:hlsearch ? ':nohls' : ':set hls')."\n"
-
" Insert a blank line below or above current line (do not move the cursor),
" see https://stackoverflow.com/a/16136133/6064933
nnoremap <expr> oo 'm`' . v:count1 . 'o<Esc>``'