aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-06 22:39:24 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-06 22:39:24 +1200
commitd41837c5db219c4292fba92699b5d185f053cc6e (patch)
tree0730e7b9489475e19b5853094cb44c22cb1f004b
parentStop wasting version pattern match, use submatches (diff)
downloaddotfiles-d41837c5db219c4292fba92699b5d185f053cc6e.tar.gz
dotfiles-d41837c5db219c4292fba92699b5d185f053cc6e.zip
Remove recursion from some maps that don't need it
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 1cdaaf15..b270bc09 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -427,8 +427,8 @@ xmap <Leader>* <Plug>(RegexEscape)
" \\ jumps to the last edit position mark, like g;, but works as a motion
" "Now, where was I?" (tap-tap)
-nmap <Leader>\ `"
-xmap <Leader>\ `"
+nnoremap <Leader>\ `"
+xnoremap <Leader>\ `"
" \DEL deletes the current buffer
nnoremap <Leader><Delete> :bdelete<CR>