aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-08-04 13:13:57 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-08-04 13:13:57 +1200
commit9553b7910a348f9d3c774a37552dda8caf88b97f (patch)
treee427398fb60843949e3b37230f407792ad1e6640 /vim/vimrc
parentMerge branch 'release/v1.42.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-9553b7910a348f9d3c774a37552dda8caf88b97f.tar.gz
dotfiles-9553b7910a348f9d3c774a37552dda8caf88b97f.zip
Merge branch 'release/v1.43.0'v1.43.0
* release/v1.43.0: Bump VERSION Make Perl boilerplate mapping silent Add Perl boilerplate generation mapping Correct a comment Tidy mapping definition for \< Add mapping to flag mail messages as unimportant
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 44ed6b02..445e0bbb 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -266,7 +266,7 @@ nnoremap <Bslash>n :<C-U>setlocal number! number?<CR>
nnoremap <Bslash>N :<C-U>set ruler! ruler?<CR>
" \o opens a line below in paste mode
nmap <Bslash>o <Plug>(PasteOpenBelow)
-" \o opens a line above in paste mode
+" \O opens a line above in paste mode
nmap <Bslash>O <Plug>(PasteOpenAbove)
" \p toggles paste mode
nnoremap <Bslash>p :<C-U>set paste! paste?<CR>
@@ -307,8 +307,8 @@ nnoremap <Bslash>+ :<C-U>call vimrc#Anchor('1GgqG')<CR>
" \. runs the configured make program into the location list
nnoremap <Bslash>. :<C-U>lmake!<CR>
-" \< and \> adjusts indent of last edit; good for pasting
-nnoremap <Bslash>< :<C-U>'[,']<<CR>
+" \< and \> adjust indent of last edit; good for pasting
+nnoremap <Bslash><lt> :<C-U>'[,']<lt><CR>
nnoremap <Bslash>> :<C-U>'[,']><CR>
" \/ types :vimgrep for me ready to enter a search pattern