| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | " Vim filetype plugin | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | " Language:	Ruby | 
					
						
							|  |  |  | " Maintainer:	Gavin Sinclair <gsinclair at soyabean.com.au> | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | " Info:		$Id$ | 
					
						
							| 
									
										
										
										
											2005-11-23 21:25:05 +00:00
										 |  |  | " URL:		http://vim-ruby.rubyforge.org | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | " Anon CVS:	See above site | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | " ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | " | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | " Original matchit support thanks to Ned Konz.	See his ftplugin/ruby.vim at | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | "   http://bike-nomad.com/vim/ruby.vim. | 
					
						
							|  |  |  | " ---------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | " Only do this when not done yet for this buffer | 
					
						
							|  |  |  | if (exists("b:did_ftplugin")) | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  |   finish | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | endif | 
					
						
							|  |  |  | let b:did_ftplugin = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | let s:cpo_save = &cpo | 
					
						
							|  |  |  | set cpo&vim | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " Matchit support | 
					
						
							|  |  |  | if exists("loaded_matchit") && !exists("b:match_words") | 
					
						
							|  |  |  |   let b:match_ignorecase = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  " TODO: improve optional do loops | 
					
						
							|  |  |  |  let b:match_words = | 
					
						
							|  |  |  |     \ '\%(' . | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  |     \	  '\%(\%(\.\|\:\:\)\s*\|\:\)\@<!\<\%(class\|module\|begin\|def\|case\|for\|do\)\>' . | 
					
						
							|  |  |  |     \	'\|' . | 
					
						
							|  |  |  |     \	  '\%(\%(^\|\.\.\.\=\|[\,;=([<>~\*/%!&^|+-]\)\s*\)\@<=\%(if\|unless\|until\|while\)\>' . | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  |     \ '\)' . | 
					
						
							|  |  |  |     \ ':' . | 
					
						
							|  |  |  |     \ '\%(' . | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  |     \	  '\%(\%(\.\|\:\:\)\s*\|\:\)\@<!\<\%(else\|elsif\|ensure\|when\)\>' . | 
					
						
							|  |  |  |     \	'\|' . | 
					
						
							|  |  |  |     \	  '\%(\%(^\|;\)\s*\)\@<=\<rescue\>' . | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  |     \ '\)' . | 
					
						
							|  |  |  |     \ ':' . | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  |     \ '\%(\%(\.\|\:\:\)\s*\|\:\)\@<!\<end\>' | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   let b:match_skip = | 
					
						
							|  |  |  |      \ "synIDattr(synID(line('.'),col('.'),0),'name') =~ '" . | 
					
						
							|  |  |  |      \ "\\<ruby\\%(String\\|StringDelimiter\\|ASCIICode\\|Interpolation\\|" . | 
					
						
							|  |  |  |      \ "NoInterpolation\\|Escape\\|Comment\\|Documentation\\)\\>'" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | setlocal formatoptions-=t formatoptions+=croql | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | setlocal include=^\\s*\\<\\(load\\\|\w*require\\)\\> | 
					
						
							|  |  |  | setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.rb','') | 
					
						
							|  |  |  | setlocal suffixesadd=.rb | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " TODO: | 
					
						
							|  |  |  | "setlocal define=^\\s*def | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | setlocal comments=:# | 
					
						
							|  |  |  | setlocal commentstring=#\ %s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if !exists("s:rubypath") | 
					
						
							|  |  |  |   if executable("ruby") | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  |     let s:code = "print ($: + begin; require %q{rubygems}; Gem.all_load_paths.sort.uniq; rescue LoadError; []; end).join(%q{,})" | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  |     if &shellxquote == "'" | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  |       let s:rubypath = system('ruby -e "' . s:code . '"') | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  |       let s:rubypath = system("ruby -e '" . s:code . "'") | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  |     endif | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  |     let s:rubypath = '.,' . substitute(s:rubypath, '\%(^\|,\)\.\%(,\|$\)', ',,', '') | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  |   else | 
					
						
							|  |  |  |     " If we can't call ruby to get its path, just default to using the | 
					
						
							|  |  |  |     " current directory and the directory of the current file. | 
					
						
							|  |  |  |     let s:rubypath = ".,," | 
					
						
							|  |  |  |   endif | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let &l:path = s:rubypath | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if has("gui_win32") && !exists("b:browsefilter") | 
					
						
							|  |  |  |   let b:browsefilter = "Ruby Source Files (*.rb)\t*.rb\n" . | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | 		     \ "All Files (*.*)\t*.*\n" | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let b:undo_ftplugin = "setl fo< inc< inex< sua< def< com< cms< path< " | 
					
						
							|  |  |  |       \ "| unlet! b:browsefilter b:match_ignorecase b:match_words b:match_skip" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let &cpo = s:cpo_save | 
					
						
							|  |  |  | unlet s:cpo_save | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | " Instructions for enabling "matchit" support: | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | " 1. Look for the latest "matchit" plugin at | 
					
						
							|  |  |  | " | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | "	  http://www.vim.org/scripts/script.php?script_id=39 | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | " | 
					
						
							|  |  |  | "    It is also packaged with Vim, in the $VIMRUNTIME/macros directory. | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | " 2. Copy "matchit.txt" into a "doc" directory (e.g. $HOME/.vim/doc). | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | " 3. Copy "matchit.vim" into a "plugin" directory (e.g. $HOME/.vim/plugin). | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | " 4. Ensure this file (ftplugin/ruby.vim) is installed. | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | " 5. Ensure you have this line in your $HOME/.vimrc: | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | "	  filetype plugin on | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | " | 
					
						
							|  |  |  | " 6. Restart Vim and create the matchit documentation: | 
					
						
							|  |  |  | " | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | "	  :helptags ~/.vim/doc | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | " | 
					
						
							|  |  |  | "    Now you can do ":help matchit", and you should be able to use "%" on Ruby | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | "    keywords.	Try ":echo b:match_words" to be sure. | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | " | 
					
						
							| 
									
										
										
										
											2005-10-10 20:59:28 +00:00
										 |  |  | " Thanks to Mark J. Reed for the instructions.	See ":help vimrc" for the | 
					
						
							| 
									
										
										
										
											2005-09-16 21:55:43 +00:00
										 |  |  | " locations of plugin directories, etc., as there are several options, and it | 
					
						
							|  |  |  | " differs on Windows.  Email gsinclair@soyabean.com.au if you need help. | 
					
						
							|  |  |  | " | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " vim: nowrap sw=2 sts=2 ts=8 ff=unix: |