]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Move new text objects to mappings section.
authorSimon Ruderich <simon@ruderich.org>
Tue, 3 Jan 2012 13:11:45 +0000 (14:11 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 3 Jan 2012 13:11:45 +0000 (14:11 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 6516546234febcfcfa372f56827426d8cc30d28a..4699746ad9a4414a58c5abbabe5fae326d1f28f9 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -339,6 +339,50 @@ inoremap <C-A> <C-G>u<C-A>
 " And for <C-W> (delete word before cursor).
 inoremap <C-W> <C-G>u<C-W>
 
+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 <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
+    vnoremap <silent> ii :<C-U>call <SID>IndTxtObj(1)<CR><Esc>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
 
@@ -507,48 +551,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 <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
-    vnoremap <silent> ii :<C-U>call <SID>IndTxtObj(1)<CR><Esc>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