Created
November 24, 2010 09:29
-
-
Save Dubhead/713395 to your computer and use it in GitHub Desktop.
Vimで ( や ) を全然使わないので、「開き括弧へ移動する」という動作に割り当ててみた。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! SearchOpenParenForward() | |
let l:_ = search("\\((\\|\\[\\|{\\|<\\|「\\|『\\)\\zs") | |
endfunction | |
function! SearchOpenParenBackward() | |
let l:_ = search("\\((\\|\\[\\|{\\|<\\|「\\|『\\)\\zs", 'b') | |
endfunction | |
noremap <silent> ) :call SearchOpenParenForward()<CR> | |
noremap <silent> ( :call SearchOpenParenBackward()<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
これは
がやりたかったことでしょうか?
あとfork先でいろいろ変更したので、見てみてください。
3)
とかcountを与えられた場合にエラー出ないようにしたcall search()
してみた