X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=fb56e0cf08f2f61314aa5881e37e4bbbfb07d60d;hb=d103b2a72ed0152303f381ab91ea7b2a3721591b;hp=e268673748a764a24cb91eaaf6ff540066ef2e56;hpb=4ea4a534a42b4ea3407bfe541a42521c6d0301fa;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index e268673..fb56e0c 100644 --- a/vimrc +++ b/vimrc @@ -488,6 +488,11 @@ inoremap jk " Also for command mode, thanks to http://github.com/mitechie/pyvim " (2010-10-15). cnoremap jk +" And fix my typos ... +inoremap JK +inoremap Jk +cnoremap JK +cnoremap Jk " Disable arrow keys for all modes except command modes. Thanks to James Vega " (http://git.jamessan.com/?p=etc/vim.git;a=summary). @@ -538,6 +543,10 @@ if has('eval') \ :call TemporaryNostartofline("C-U>") endif +" Let Y yank to the end of the line, similar to D and C. Use yy if you want to +" yank a line. This fixes a weird inconsistency in Vi(m). +nnoremap Y y$ + " Write before suspending, thanks to deryni in #vim on Freenode (2011-05-09 " 20:02 CEST). To suspend without saving either unmap this or use :stop. " Only the current buffer is written, thus switching to another buffer works @@ -597,6 +606,19 @@ nnoremap 8 :8buffer nnoremap 9 :9buffer nnoremap 0 :10buffer +" Use real tabs instead of soft tabs. +if has('eval') +" Switch from soft tabs to real tabs. + function! s:UseTabs() + setlocal noexpandtab shiftwidth=8 softtabstop=8 + endfunction + nnoremap t :call UseTabs() +endif +" Enable "verbatim" mode. Used to view files with long lines or without syntax +" coloring. +nnoremap v :set nolist nowrap nospell synmaxcol=0 + \ :2match + " Make last active window the only window. Similar to o. nnoremap O po @@ -613,11 +635,6 @@ else nmap sd endif -" Add semicolon to the end of the line. Thanks to -" http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim -" on Freenode for an improved version which doesn't clobber any marks. -nnoremap ; :call setline(line('.'), getline('.') . ';') - if has('eval') " * and # for selections in visual mode. Thanks to " http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html @@ -979,16 +996,17 @@ if has('autocmd') endif " Display a warning when editing a file which contains "do not edit" (ignoring -" the case) in the first lines of the file, for example template files which -" were preprocessed or auto-generated files. Especially useful when the header -" is not displayed on the first screen, e.g. when the old position is -" restored. +" the case) and similar messages in the first lines of the file, for example +" template files which were preprocessed or auto-generated files. Especially +" useful when the header is not displayed on the first screen, e.g. when the +" old position is restored. function! s:SearchForDoNotEditHeader() " Only search the first 20 lines to prevent false positives, e.g. " in scripts which write files containing this warning and ignore " the case (\c). (Can't use search()'s {stopline} as we might not " start searching from the top.) - let l:match = search('\cdo not edit', 'n') + let l:search = '\c\(do not \(edit\|modify\)\|autogenerated by\)' + let l:match = search(l:search, 'n') if l:match == 0 || l:match > 20 return endif