]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Add new text-objects ii ai for indented text.
authorSimon Ruderich <simon@ruderich.org>
Sat, 19 Nov 2011 11:01:43 +0000 (12:01 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 19 Nov 2011 11:01:43 +0000 (12:01 +0100)
vimrc

diff --git a/vimrc b/vimrc
index e48c21943e01b4353cac05a8a76198ae5c409cdc..e209796979a08a4f66f23a6a80a387538415d569 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -489,3 +489,52 @@ if has('autocmd')
 
     augroup END
 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).
+    onoremap <silent>ai :<C-u>call IndTxtObj(0)<CR>
+    onoremap <silent>ii :<C-u>call IndTxtObj(1)<CR>
+    vnoremap <silent>ai :<C-u>call IndTxtObj(0)<CR><Esc>gv
+    vnoremap <silent>ii :<C-u>call IndTxtObj(1)<CR><Esc>gv
+
+    function! 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