comparison runtime/ftplugin/ruby.vim @ 867:a5677b7ce858

updated for version 7.0g04
author vimboss
date Fri, 05 May 2006 21:15:17 +0000
parents f24a95dae8ee
children c4cd8ad60bee
comparison
equal deleted inserted replaced
866:5de6b337e1a2 867:a5677b7ce858
1 " Vim filetype plugin 1 " Vim filetype plugin
2 " Language: Ruby 2 " Language: Ruby
3 " Maintainer: Gavin Sinclair <gsinclair at soyabean.com.au> 3 " Maintainer: Gavin Sinclair <gsinclair at gmail.com>
4 " Info: $Id$ 4 " Info: $Id$
5 " URL: http://vim-ruby.rubyforge.org 5 " URL: http://vim-ruby.rubyforge.org
6 " Anon CVS: See above site 6 " Anon CVS: See above site
7 " Release Coordinator: Doug Kearns <dougkearns@gmail.com> 7 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
8 " ---------------------------------------------------------------------------- 8 " ----------------------------------------------------------------------------
36 \ '\%(\%(\.\|\:\:\)\s*\|\:\)\@<!\<\%(else\|elsif\|ensure\|when\)\>' . 36 \ '\%(\%(\.\|\:\:\)\s*\|\:\)\@<!\<\%(else\|elsif\|ensure\|when\)\>' .
37 \ '\|' . 37 \ '\|' .
38 \ '\%(\%(^\|;\)\s*\)\@<=\<rescue\>' . 38 \ '\%(\%(^\|;\)\s*\)\@<=\<rescue\>' .
39 \ '\)' . 39 \ '\)' .
40 \ ':' . 40 \ ':' .
41 \ '\%(\%(\.\|\:\:\)\s*\|\:\)\@<!\<end\>' 41 \ '\%(\%(\.\|\:\:\)\s*\|\:\)\@<!\<end\>' .
42 \ ',{:},\[:\],(:)'
42 43
43 let b:match_skip = 44 let b:match_skip =
44 \ "synIDattr(synID(line('.'),col('.'),0),'name') =~ '" . 45 \ "synIDattr(synID(line('.'),col('.'),0),'name') =~ '" .
45 \ "\\<ruby\\%(String\\|StringDelimiter\\|ASCIICode\\|Interpolation\\|" . 46 \ "\\<ruby\\%(String\\|StringDelimiter\\|ASCIICode\\|Interpolation\\|" .
46 \ "NoInterpolation\\|Escape\\|Comment\\|Documentation\\)\\>'" 47 \ "NoInterpolation\\|Escape\\|Comment\\|Documentation\\)\\>'"