X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=612ebd98a3ff65841e8f4abba48eac4655d9d302;hb=c778ff27e474ceea3dbae546c5c62d28f1b13ebd;hp=d5496e6f7cd53872212cbe844ecae6f96618ff31;hpb=0dc31a4dc0d8558f193c4284d0879c2d1e042856;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index d5496e6..612ebd9 100644 --- a/vimrc +++ b/vimrc @@ -7,7 +7,7 @@ " instead. Thanks to godlygeek in #vim on Freenode (2009-06-19 22:21). if $HOME == '/root' || exists('$SUDO_USER') echomsg 'Running as root is forbidden! Use sudoedit.' - qa + qall endif @@ -184,6 +184,9 @@ endif " Easy way to exit insert mode. inoremap jj +" Also for command mode, thanks to http://github.com/mitechie/pyvim +" (2010-10-15). +cnoremap jj " Disable arrow keys for all modes except command modes. Thanks to James Vega " (http://git.jamessan.com/?p=etc/vim.git;a=summary). @@ -244,6 +247,20 @@ endif " on Freenode for an improved version which doesn't clobber any marks. nnoremap ; :call setline(line('.'), getline('.') . ';') +" * and # for selections in visual mode. Thanks to +" http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html +" and all nerds involved (godlygeek, strull in #vim on Freenode). +if has('eval') + function! s:VSetSearch() + let temp = @@ + normal! gvy + let @/ = '\V' . substitute(escape(@@, '\'), '\n', '\\n', 'g') + let @@ = temp + endfunction + vnoremap * :call VSetSearch()// + vnoremap # :call VSetSearch()?? +endif + " I often type "W" instead of "w" when trying to save a file. Fix my mistake. " Thanks to Tony Mechelynck from the Vim " mailing list for the commands.