From: Max Ischenko Date: 2002-01-22T18:11:43+09:00 Subject: Re: Ruby + ViM Dave wrote: > On Mon, 21 Jan 2002 18:57:46 GMT, SATO Seichi > wrote: >>Jump to corresponding begin (or end) statement. > Yeah, I want my '%' key! :o) Smth like this should be added to ftplugin/ruby.vim " This is cut from lua.vim if exists("loaded_matchit") let b:match_ignorecase = 0 let b:match_words = \ '\<\%(do\|function\|if\)\>:' . \ '\<\%(return\|else\|elseif\)\>:' . \ '\,' . \ '\:\' endif " exists("loaded_matchit") -- To understand a program you must become both the machine and the program.