X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=0cfc4cb4e5d979df5551e9209ac5193e01d876e2;hb=ee235b0a49c43d001e5bffddb122465450909df2;hp=35b983095bc556cff7a9f1850d83eb558faa08a1;hpb=1d73991ce43d1743f7f875d98e41986dc9f96a53;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 35b9830..0cfc4cb 100644 --- a/vimrc +++ b/vimrc @@ -606,6 +606,15 @@ 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 + " Make last active window the only window. Similar to o. nnoremap O po @@ -622,11 +631,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 @@ -988,16 +992,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