]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Fix indentation.
authorSimon Ruderich <simon@ruderich.org>
Fri, 2 Dec 2011 14:19:48 +0000 (15:19 +0100)
committerSimon Ruderich <simon@ruderich.org>
Fri, 2 Dec 2011 14:19:48 +0000 (15:19 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 04d26cab126f38003c941f6075b028d1ea73397a..c39fa3c3b720e427d2fa7e8de76207d46174d019 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -496,10 +496,9 @@ endif
 " CUSTOM FUNCTIONS
 
 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).
+" 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 <silent> ai :<C-U>call <SID>IndTxtObj(0)<CR>
     onoremap <silent> ii :<C-U>call <SID>IndTxtObj(1)<CR>
     vnoremap <silent> ai :<C-U>call <SID>IndTxtObj(0)<CR><Esc>gv