X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=bf94896e63485c3890fff7a26eb902392222bac9;hb=669c65e2be773dc0138879774637b2a6830b2ca6;hp=0e5545176a00a696a5d8894a11a11d70d708a71c;hpb=50b88549656631a03dbdf36e086ac7087a7ffa5e;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 0e55451..bf94896 100644 --- a/vimrc +++ b/vimrc @@ -25,6 +25,10 @@ endif " Make sure Vim (and not Vi) settings are used. set nocompatible +" Use UTF-8 for all internal data (buffers, registers, etc.). This doesn't +" affect reading files in different encodings, see 'fileencodings' for that. +set encoding=utf-8 + " Load my scripts from ~/.vim (my scripts) and ~/.vim/runtime (checkout of Vim " runtime files) if available. set runtimepath-=~/.vim @@ -218,7 +222,7 @@ cmap cmap cmap -" Use Ctrl-P/Ctrl-N as replacement for / in command mode. Thanks to +" Use / as replacement for / in command mode. Thanks to " abstrakt and grayw in #vim on Freenode (2010-04-12 21:20 CEST). cnoremap cnoremap @@ -328,6 +332,61 @@ endif " vimgor (bot) in #vim on Freenode (2010-03-30 05:58 CEST). noremap :nohlsearch +" in insert mode deletes a lot, break undo sequence before deleting the +" line so the change can be undone. Thanks to the vimrc_example.vim file in +" Vim's source. +inoremap u +" Same for (insert previously inserted text and leave insert mode). +inoremap u +" And for (insert previously inserted text). +inoremap u +" And for (delete word before cursor). +inoremap u + +if has('eval') +" New text-objects ii and ai to work on text with the same indentation. Thanks +" to http://vim.wikia.com/index.php?title=Indent_text_object&oldid=27126 +" (visited on 2011-11-19). + onoremap ai :call IndTxtObj(0) + onoremap ii :call IndTxtObj(1) + vnoremap ai :call IndTxtObj(0)gv + vnoremap ii :call IndTxtObj(1)gv + + function! s:IndTxtObj(inner) + let curline = line(".") + let lastline = line("$") + let i = indent(line(".")) - &shiftwidth * (v:count1 - 1) + let i = i < 0 ? 0 : i + if getline(".") !~ "^\\s*$" + let p = line(".") - 1 + let nextblank = getline(p) =~ "^\\s*$" + while p > 0 + \ && ((i == 0 && !nextblank) + \ || (i > 0 && ((indent(p) >= i + \ && !(nextblank && a:inner)) + \ || (nextblank && !a:inner)))) + - + let p = line(".") - 1 + let nextblank = getline(p) =~ "^\\s*$" + endwhile + normal! 0V + call cursor(curline, 0) + let p = line(".") + 1 + let nextblank = getline(p) =~ "^\\s*$" + while p <= lastline + \ && ((i == 0 && !nextblank) + \ || (i > 0 && ((indent(p) >= i + \ && !(nextblank && a:inner)) + \ || (nextblank && !a:inner)))) + + + let p = line(".") + 1 + let nextblank = getline(p) =~ "^\\s*$" + endwhile + normal! $ + endif + endfunction +endif + " ABBREVIATIONS @@ -496,48 +555,6 @@ endif " CUSTOM FUNCTIONS AND COMMANDS if has('eval') -" New text-objects ii and ai to work on text with the same indentation. Thanks -" to http://vim.wikia.com/index.php?title=Indent_text_object&oldid=27126 -" (visited on 2011-11-19). - onoremap ai :call IndTxtObj(0) - onoremap ii :call IndTxtObj(1) - vnoremap ai :call IndTxtObj(0)gv - vnoremap ii :call IndTxtObj(1)gv - - function! s:IndTxtObj(inner) - let curline = line(".") - let lastline = line("$") - let i = indent(line(".")) - &shiftwidth * (v:count1 - 1) - let i = i < 0 ? 0 : i - if getline(".") !~ "^\\s*$" - let p = line(".") - 1 - let nextblank = getline(p) =~ "^\\s*$" - while p > 0 - \ && ((i == 0 && !nextblank) - \ || (i > 0 && ((indent(p) >= i - \ && !(nextblank && a:inner)) - \ || (nextblank && !a:inner)))) - - - let p = line(".") - 1 - let nextblank = getline(p) =~ "^\\s*$" - endwhile - normal! 0V - call cursor(curline, 0) - let p = line(".") + 1 - let nextblank = getline(p) =~ "^\\s*$" - while p <= lastline - \ && ((i == 0 && !nextblank) - \ || (i > 0 && ((indent(p) >= i - \ && !(nextblank && a:inner)) - \ || (nextblank && !a:inner)))) - + - let p = line(".") + 1 - let nextblank = getline(p) =~ "^\\s*$" - endwhile - normal! $ - endif - endfunction - " Convenient command to see the difference between the current buffer and the " file it was loaded from, thus the changes you made. Thanks to the " vimrc_example.vim file in Vim's source. Modified to use the same filetype