aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
m---------vim/bundle/cursorline_current0
-rw-r--r--vim/vimrc13
2 files changed, 10 insertions, 3 deletions
diff --git a/vim/bundle/cursorline_current b/vim/bundle/cursorline_current
-Subproject 70eb3eaaecfce486ce6df4a141d3d4d1bec30e0
+Subproject b48b57b35899796bfbea9a3aab8c584d8eaebfd
diff --git a/vim/vimrc b/vim/vimrc
index 2f60a31b..9f5735c7 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -140,7 +140,9 @@ set nojoinspaces
" Don't show a statusline if there's only one window
" This is the Vim default, but NeoVim changed it
-set laststatus=1
+if &laststatus
+ set laststatus=1
+endif
" Don't redraw the screen during batch execution
set lazyredraw
@@ -167,7 +169,9 @@ set path+=** " Search current directory's whole tree
" Disable command line display of file position
" This is the Vim default, but NeoVim changed it
-set noruler
+if &ruler
+ set noruler
+endif
" Make sessions usable
if exists('+sessionoptions')
@@ -398,9 +402,12 @@ nnoremap <Bslash>. :<C-U>lmake!<CR>
nnoremap <Bslash><lt> :<C-U>'[,']<lt><CR>
nnoremap <Bslash>> :<C-U>'[,']><CR>
-" \_ uses last changed or yanked text as an object
+" \_ uses last changed or yanked text as a characterwise object
onoremap <Bslash>_ :<C-U>normal! `[v`]<CR>
+" \% uses entire buffer as a linewise object
+onoremap <Bslash>% :<C-U>normal! 1GVG<CR>
+
" \{ and \} move to lines with non-space chars before current column
nmap <Bslash>{ <Plug>(VerticalRegionUpNormal)
nmap <Bslash>} <Plug>(VerticalRegionDownNormal)