Mercurial > vim
annotate runtime/ftplugin/ruby.vim @ 12989:0f88d30758ce
Added tag v8.0.1370 for changeset da725bc3fd2c00a78d47f81ea7c135093b78a555
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 05 Dec 2017 14:15:05 +0100 |
parents | 43efa4f5a8ea |
children | f0f06837a699 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin |
831 | 2 " Language: Ruby |
4869 | 3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
4 " URL: https://github.com/vim-ruby/vim-ruby | |
1123 | 5 " Release Coordinator: Doug Kearns <dougkearns@gmail.com> |
530 | 6 " ---------------------------------------------------------------------------- |
7 | 7 |
8 if (exists("b:did_ftplugin")) | |
530 | 9 finish |
7 | 10 endif |
11 let b:did_ftplugin = 1 | |
12 | |
530 | 13 let s:cpo_save = &cpo |
14 set cpo&vim | |
15 | |
1123 | 16 if has("gui_running") && !has("gui_win32") |
4869 | 17 setlocal keywordprg=ri\ -T\ -f\ bs |
1123 | 18 else |
19 setlocal keywordprg=ri | |
20 endif | |
21 | |
530 | 22 " Matchit support |
23 if exists("loaded_matchit") && !exists("b:match_words") | |
24 let b:match_ignorecase = 0 | |
25 | |
1123 | 26 let b:match_words = |
1215 | 27 \ '\<\%(if\|unless\|case\|while\|until\|for\|do\|class\|module\|def\|begin\)\>=\@!' . |
1123 | 28 \ ':' . |
1215 | 29 \ '\<\%(else\|elsif\|ensure\|when\|rescue\|break\|redo\|next\|retry\)\>' . |
1123 | 30 \ ':' . |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
31 \ '\%(^\|[^.\:@$]\)\@<=\<end\:\@!\>' . |
1123 | 32 \ ',{:},\[:\],(:)' |
530 | 33 |
34 let b:match_skip = | |
1123 | 35 \ "synIDattr(synID(line('.'),col('.'),0),'name') =~ '" . |
1215 | 36 \ "\\<ruby\\%(String\\|StringDelimiter\\|ASCIICode\\|Escape\\|" . |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
37 \ "Regexp\\|RegexpDelimiter\\|" . |
1215 | 38 \ "Interpolation\\|NoInterpolation\\|Comment\\|Documentation\\|" . |
39 \ "ConditionalModifier\\|RepeatModifier\\|OptionalDo\\|" . | |
40 \ "Function\\|BlockArgument\\|KeywordAsMethod\\|ClassVariable\\|" . | |
41 \ "InstanceVariable\\|GlobalVariable\\|Symbol\\)\\>'" | |
530 | 42 endif |
43 | |
44 setlocal formatoptions-=t formatoptions+=croql | |
45 | |
4869 | 46 setlocal include=^\\s*\\<\\(load\\>\\\|require\\>\\\|autoload\\s*:\\=[\"']\\=\\h\\w*[\"']\\=,\\) |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
47 setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'\%(\.rb\)\=$','.rb','') |
530 | 48 setlocal suffixesadd=.rb |
831 | 49 |
1123 | 50 if exists("&ofu") && has("ruby") |
831 | 51 setlocal omnifunc=rubycomplete#Complete |
52 endif | |
530 | 53 |
1123 | 54 " To activate, :set ballooneval |
55 if has('balloon_eval') && exists('+balloonexpr') | |
56 setlocal balloonexpr=RubyBalloonexpr() | |
57 endif | |
58 | |
59 | |
530 | 60 " TODO: |
61 "setlocal define=^\\s*def | |
62 | |
63 setlocal comments=:# | |
64 setlocal commentstring=#\ %s | |
65 | |
4869 | 66 if !exists('g:ruby_version_paths') |
67 let g:ruby_version_paths = {} | |
68 endif | |
69 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
70 function! s:query_path(root) abort |
4869 | 71 let code = "print $:.join %q{,}" |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
72 if &shell =~# 'sh' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
73 let prefix = 'env PATH='.shellescape($PATH).' ' |
4869 | 74 else |
75 let prefix = '' | |
76 endif | |
77 if &shellxquote == "'" | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
78 let path_check = prefix.'ruby --disable-gems -e "' . code . '"' |
4869 | 79 else |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
80 let path_check = prefix."ruby --disable-gems -e '" . code . "'" |
4869 | 81 endif |
82 | |
83 let cd = haslocaldir() ? 'lcd' : 'cd' | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
84 let cwd = fnameescape(getcwd()) |
4869 | 85 try |
86 exe cd fnameescape(a:root) | |
87 let path = split(system(path_check),',') | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
88 exe cd cwd |
4869 | 89 return path |
90 finally | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
91 exe cd cwd |
4869 | 92 endtry |
93 endfunction | |
94 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
95 function! s:build_path(path) abort |
4869 | 96 let path = join(map(copy(a:path), 'v:val ==# "." ? "" : v:val'), ',') |
97 if &g:path !~# '\v^\.%(,/%(usr|emx)/include)=,,$' | |
98 let path = substitute(&g:path,',,$',',','') . ',' . path | |
99 endif | |
100 return path | |
101 endfunction | |
102 | |
103 if !exists('b:ruby_version') && !exists('g:ruby_path') && isdirectory(expand('%:p:h')) | |
104 let s:version_file = findfile('.ruby-version', '.;') | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
105 if !empty(s:version_file) && filereadable(s:version_file) |
4869 | 106 let b:ruby_version = get(readfile(s:version_file, '', 1), '') |
107 if !has_key(g:ruby_version_paths, b:ruby_version) | |
108 let g:ruby_version_paths[b:ruby_version] = s:query_path(fnamemodify(s:version_file, ':p:h')) | |
530 | 109 endif |
110 endif | |
111 endif | |
112 | |
4869 | 113 if exists("g:ruby_path") |
114 let s:ruby_path = type(g:ruby_path) == type([]) ? join(g:ruby_path, ',') : g:ruby_path | |
115 elseif has_key(g:ruby_version_paths, get(b:, 'ruby_version', '')) | |
116 let s:ruby_paths = g:ruby_version_paths[b:ruby_version] | |
117 let s:ruby_path = s:build_path(s:ruby_paths) | |
118 else | |
119 if !exists('g:ruby_default_path') | |
120 if has("ruby") && has("win32") | |
121 ruby ::VIM::command( 'let g:ruby_default_path = split("%s",",")' % $:.join(%q{,}) ) | |
122 elseif executable('ruby') | |
123 let g:ruby_default_path = s:query_path($HOME) | |
124 else | |
125 let g:ruby_default_path = map(split($RUBYLIB,':'), 'v:val ==# "." ? "" : v:val') | |
126 endif | |
127 endif | |
128 let s:ruby_paths = g:ruby_default_path | |
129 let s:ruby_path = s:build_path(s:ruby_paths) | |
130 endif | |
131 | |
132 if stridx(&l:path, s:ruby_path) == -1 | |
133 let &l:path = s:ruby_path | |
134 endif | |
135 if exists('s:ruby_paths') && stridx(&l:tags, join(map(copy(s:ruby_paths),'v:val."/tags"'),',')) == -1 | |
136 let &l:tags = &tags . ',' . join(map(copy(s:ruby_paths),'v:val."/tags"'),',') | |
137 endif | |
530 | 138 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
139 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
530 | 140 let b:browsefilter = "Ruby Source Files (*.rb)\t*.rb\n" . |
1123 | 141 \ "All Files (*.*)\t*.*\n" |
530 | 142 endif |
143 | |
4869 | 144 let b:undo_ftplugin = "setl fo< inc< inex< sua< def< com< cms< path< tags< kp<" |
1215 | 145 \."| unlet! b:browsefilter b:match_ignorecase b:match_words b:match_skip" |
146 \."| if exists('&ofu') && has('ruby') | setl ofu< | endif" | |
147 \."| if has('balloon_eval') && exists('+bexpr') | setl bexpr< | endif" | |
148 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
149 function! s:map(mode, flags, map) abort |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
150 let from = matchstr(a:map, '\S\+') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
151 if empty(mapcheck(from, a:mode)) |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
152 exe a:mode.'map' '<buffer>'.(a:0 ? a:1 : '') a:map |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
153 let b:undo_ftplugin .= '|sil! '.a:mode.'unmap <buffer> '.from |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
154 endif |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
155 endfunction |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
156 |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
157 cmap <buffer><script><expr> <Plug><cword> substitute(RubyCursorIdentifier(),'^$',"\022\027",'') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
158 cmap <buffer><script><expr> <Plug><cfile> substitute(RubyCursorFile(),'^$',"\022\006",'') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
159 let b:undo_ftplugin .= "| sil! cunmap <buffer> <Plug><cword>| sil! cunmap <buffer> <Plug><cfile>" |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
160 |
1215 | 161 if !exists("g:no_plugin_maps") && !exists("g:no_ruby_maps") |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
162 nmap <buffer><script> <SID>: :<C-U> |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
163 nmap <buffer><script> <SID>c: :<C-U><C-R>=v:count ? v:count : ''<CR> |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
164 |
2225 | 165 nnoremap <silent> <buffer> [m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','b','n')<CR> |
166 nnoremap <silent> <buffer> ]m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','','n')<CR> | |
167 nnoremap <silent> <buffer> [M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','b','n')<CR> | |
168 nnoremap <silent> <buffer> ]M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','','n')<CR> | |
169 xnoremap <silent> <buffer> [m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','b','v')<CR> | |
170 xnoremap <silent> <buffer> ]m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','','v')<CR> | |
171 xnoremap <silent> <buffer> [M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','b','v')<CR> | |
172 xnoremap <silent> <buffer> ]M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','','v')<CR> | |
1215 | 173 |
2225 | 174 nnoremap <silent> <buffer> [[ :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','b','n')<CR> |
175 nnoremap <silent> <buffer> ]] :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','','n')<CR> | |
176 nnoremap <silent> <buffer> [] :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','b','n')<CR> | |
177 nnoremap <silent> <buffer> ][ :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','','n')<CR> | |
178 xnoremap <silent> <buffer> [[ :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','b','v')<CR> | |
179 xnoremap <silent> <buffer> ]] :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','','v')<CR> | |
180 xnoremap <silent> <buffer> [] :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','b','v')<CR> | |
181 xnoremap <silent> <buffer> ][ :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','','v')<CR> | |
1215 | 182 |
183 let b:undo_ftplugin = b:undo_ftplugin | |
184 \."| sil! exe 'unmap <buffer> [[' | sil! exe 'unmap <buffer> ]]' | sil! exe 'unmap <buffer> []' | sil! exe 'unmap <buffer> ]['" | |
185 \."| sil! exe 'unmap <buffer> [m' | sil! exe 'unmap <buffer> ]m' | sil! exe 'unmap <buffer> [M' | sil! exe 'unmap <buffer> ]M'" | |
2225 | 186 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
187 if maparg('im','x') == '' && maparg('im','o') == '' && maparg('am','x') == '' && maparg('am','o') == '' |
4869 | 188 onoremap <silent> <buffer> im :<C-U>call <SID>wrap_i('[m',']M')<CR> |
189 onoremap <silent> <buffer> am :<C-U>call <SID>wrap_a('[m',']M')<CR> | |
190 xnoremap <silent> <buffer> im :<C-U>call <SID>wrap_i('[m',']M')<CR> | |
191 xnoremap <silent> <buffer> am :<C-U>call <SID>wrap_a('[m',']M')<CR> | |
192 let b:undo_ftplugin = b:undo_ftplugin | |
193 \."| sil! exe 'ounmap <buffer> im' | sil! exe 'ounmap <buffer> am'" | |
194 \."| sil! exe 'xunmap <buffer> im' | sil! exe 'xunmap <buffer> am'" | |
195 endif | |
196 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
197 if maparg('iM','x') == '' && maparg('iM','o') == '' && maparg('aM','x') == '' && maparg('aM','o') == '' |
4869 | 198 onoremap <silent> <buffer> iM :<C-U>call <SID>wrap_i('[[','][')<CR> |
199 onoremap <silent> <buffer> aM :<C-U>call <SID>wrap_a('[[','][')<CR> | |
200 xnoremap <silent> <buffer> iM :<C-U>call <SID>wrap_i('[[','][')<CR> | |
201 xnoremap <silent> <buffer> aM :<C-U>call <SID>wrap_a('[[','][')<CR> | |
202 let b:undo_ftplugin = b:undo_ftplugin | |
203 \."| sil! exe 'ounmap <buffer> iM' | sil! exe 'ounmap <buffer> aM'" | |
204 \."| sil! exe 'xunmap <buffer> iM' | sil! exe 'xunmap <buffer> aM'" | |
205 endif | |
206 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
207 call s:map('c', '', '<C-R><C-W> <Plug><cword>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
208 call s:map('c', '', '<C-R><C-F> <Plug><cfile>') |
4869 | 209 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
210 cmap <buffer><script><expr> <SID>tagzv &foldopen =~# 'tag' ? '<Bar>norm! zv' : '' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
211 call s:map('n', '<silent>', '<C-]> <SID>:exe v:count1."tag <Plug><cword>"<SID>tagzv<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
212 call s:map('n', '<silent>', 'g<C-]> <SID>:exe "tjump <Plug><cword>"<SID>tagzv<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
213 call s:map('n', '<silent>', 'g] <SID>:exe "tselect <Plug><cword>"<SID>tagzv<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
214 call s:map('n', '<silent>', '<C-W>] <SID>:exe v:count1."stag <Plug><cword>"<SID>tagzv<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
215 call s:map('n', '<silent>', '<C-W><C-]> <SID>:exe v:count1."stag <Plug><cword>"<SID>tagzv<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
216 call s:map('n', '<silent>', '<C-W>g<C-]> <SID>:exe "stjump <Plug><cword>"<SID>tagzv<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
217 call s:map('n', '<silent>', '<C-W>g] <SID>:exe "stselect <Plug><cword>"<SID>tagzv<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
218 call s:map('n', '<silent>', '<C-W>} <SID>:exe v:count1."ptag <Plug><cword>"<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
219 call s:map('n', '<silent>', '<C-W>g} <SID>:exe "ptjump <Plug><cword>"<CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
220 |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
221 call s:map('n', '<silent>', 'gf <SID>c:find <Plug><cfile><CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
222 call s:map('n', '<silent>', '<C-W>f <SID>c:sfind <Plug><cfile><CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
223 call s:map('n', '<silent>', '<C-W><C-F> <SID>c:sfind <Plug><cfile><CR>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
224 call s:map('n', '<silent>', '<C-W>gf <SID>c:tabfind <Plug><cfile><CR>') |
1215 | 225 endif |
530 | 226 |
227 let &cpo = s:cpo_save | |
228 unlet s:cpo_save | |
229 | |
1123 | 230 if exists("g:did_ruby_ftplugin_functions") |
231 finish | |
232 endif | |
233 let g:did_ruby_ftplugin_functions = 1 | |
234 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
235 function! RubyBalloonexpr() abort |
1123 | 236 if !exists('s:ri_found') |
237 let s:ri_found = executable('ri') | |
238 endif | |
239 if s:ri_found | |
240 let line = getline(v:beval_lnum) | |
241 let b = matchstr(strpart(line,0,v:beval_col),'\%(\w\|[:.]\)*$') | |
242 let a = substitute(matchstr(strpart(line,v:beval_col),'^\w*\%([?!]\|\s*=\)\?'),'\s\+','','g') | |
243 let str = b.a | |
244 let before = strpart(line,0,v:beval_col-strlen(b)) | |
245 let after = strpart(line,v:beval_col+strlen(a)) | |
246 if str =~ '^\.' | |
247 let str = substitute(str,'^\.','#','g') | |
248 if before =~ '\]\s*$' | |
249 let str = 'Array'.str | |
250 elseif before =~ '}\s*$' | |
251 " False positives from blocks here | |
252 let str = 'Hash'.str | |
253 elseif before =~ "[\"'`]\\s*$" || before =~ '\$\d\+\s*$' | |
254 let str = 'String'.str | |
255 elseif before =~ '\$\d\+\.\d\+\s*$' | |
256 let str = 'Float'.str | |
257 elseif before =~ '\$\d\+\s*$' | |
258 let str = 'Integer'.str | |
259 elseif before =~ '/\s*$' | |
260 let str = 'Regexp'.str | |
261 else | |
262 let str = substitute(str,'^#','.','') | |
263 endif | |
264 endif | |
265 let str = substitute(str,'.*\.\s*to_f\s*\.\s*','Float#','') | |
266 let str = substitute(str,'.*\.\s*to_i\%(nt\)\=\s*\.\s*','Integer#','') | |
267 let str = substitute(str,'.*\.\s*to_s\%(tr\)\=\s*\.\s*','String#','') | |
268 let str = substitute(str,'.*\.\s*to_sym\s*\.\s*','Symbol#','') | |
269 let str = substitute(str,'.*\.\s*to_a\%(ry\)\=\s*\.\s*','Array#','') | |
270 let str = substitute(str,'.*\.\s*to_proc\s*\.\s*','Proc#','') | |
271 if str !~ '^\w' | |
272 return '' | |
273 endif | |
4869 | 274 silent! let res = substitute(system("ri -f rdoc -T \"".str.'"'),'\n$','','') |
1215 | 275 if res =~ '^Nothing known about' || res =~ '^Bad argument:' || res =~ '^More than one method' |
1123 | 276 return '' |
277 endif | |
278 return res | |
279 else | |
280 return "" | |
281 endif | |
282 endfunction | |
283 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
284 function! s:searchsyn(pattern, syn, flags, mode) abort |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
285 let cnt = v:count1 |
4869 | 286 norm! m' |
287 if a:mode ==# 'v' | |
288 norm! gv | |
289 endif | |
290 let i = 0 | |
291 while i < cnt | |
292 let i = i + 1 | |
293 let line = line('.') | |
294 let col = col('.') | |
295 let pos = search(a:pattern,'W'.a:flags) | |
296 while pos != 0 && s:synname() !~# a:syn | |
297 let pos = search(a:pattern,'W'.a:flags) | |
298 endwhile | |
299 if pos == 0 | |
300 call cursor(line,col) | |
301 return | |
2225 | 302 endif |
4869 | 303 endwhile |
1215 | 304 endfunction |
305 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
306 function! s:synname() abort |
4869 | 307 return synIDattr(synID(line('.'),col('.'),0),'name') |
308 endfunction | |
309 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
310 function! s:wrap_i(back,forward) abort |
4869 | 311 execute 'norm k'.a:forward |
312 let line = line('.') | |
313 execute 'norm '.a:back | |
314 if line('.') == line - 1 | |
315 return s:wrap_a(a:back,a:forward) | |
316 endif | |
317 execute 'norm jV'.a:forward.'k' | |
318 endfunction | |
319 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
320 function! s:wrap_a(back,forward) abort |
4869 | 321 execute 'norm '.a:forward |
322 if line('.') < line('$') && getline(line('.')+1) ==# '' | |
323 let after = 1 | |
324 endif | |
325 execute 'norm '.a:back | |
326 while getline(line('.')-1) =~# '^\s*#' && line('.') | |
327 - | |
328 endwhile | |
329 if exists('after') | |
330 execute 'norm V'.a:forward.'j' | |
331 elseif line('.') > 1 && getline(line('.')-1) =~# '^\s*$' | |
332 execute 'norm kV'.a:forward | |
333 else | |
334 execute 'norm V'.a:forward | |
335 endif | |
1215 | 336 endfunction |
1123 | 337 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
338 function! RubyCursorIdentifier() abort |
2225 | 339 let asciicode = '\%(\w\|[]})\"'."'".']\)\@<!\%(?\%(\\M-\\C-\|\\C-\\M-\|\\M-\\c\|\\c\\M-\|\\c\|\\C-\|\\M-\)\=\%(\\\o\{1,3}\|\\x\x\{1,2}\|\\\=\S\)\)' |
340 let number = '\%(\%(\w\|[]})\"'."'".']\s*\)\@<!-\)\=\%(\<[[:digit:]_]\+\%(\.[[:digit:]_]\+\)\=\%([Ee][[:digit:]_]\+\)\=\>\|\<0[xXbBoOdD][[:xdigit:]_]\+\>\)\|'.asciicode | |
341 let operator = '\%(\[\]\|<<\|<=>\|[!<>]=\=\|===\=\|[!=]\~\|>>\|\*\*\|\.\.\.\=\|=>\|[~^&|*/%+-]\)' | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
342 let method = '\%(\.[_a-zA-Z]\w*\s*=>\@!\|\<[_a-zA-Z]\w*\>[?!]\=\)' |
2225 | 343 let global = '$\%([!$&"'."'".'*+,./:;<=>?@\`~]\|-\=\w\+\>\)' |
344 let symbolizable = '\%(\%(@@\=\)\w\+\>\|'.global.'\|'.method.'\|'.operator.'\)' | |
345 let pattern = '\C\s*\%('.number.'\|\%(:\@<!:\)\='.symbolizable.'\)' | |
346 let [lnum, col] = searchpos(pattern,'bcn',line('.')) | |
347 let raw = matchstr(getline('.')[col-1 : ],pattern) | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
348 let stripped = substitute(substitute(raw,'\s\+=$','=',''),'^\s*[:.]\=','','') |
2225 | 349 return stripped == '' ? expand("<cword>") : stripped |
350 endfunction | |
351 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
352 function! RubyCursorFile() abort |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
353 let isfname = &isfname |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
354 try |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
355 set isfname+=: |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
356 let cfile = expand('<cfile>') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
357 finally |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
358 let isfname = &isfname |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
359 endtry |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
360 let pre = matchstr(strpart(getline('.'), 0, col('.')-1), '.*\f\@<!') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
361 let post = matchstr(strpart(getline('.'), col('.')), '\f\@!.*') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
362 let ext = getline('.') =~# '^\s*\%(require\%(_relative\)\=\|autoload\)\>' && cfile !~# '\.rb$' ? '.rb' : '' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
363 if s:synname() ==# 'rubyConstant' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
364 let cfile = substitute(cfile,'\.\w\+[?!=]\=$','','') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
365 let cfile = substitute(cfile,'::','/','g') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
366 let cfile = substitute(cfile,'\(\u\+\)\(\u\l\)','\1_\2', 'g') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
367 let cfile = substitute(cfile,'\(\l\|\d\)\(\u\)','\1_\2', 'g') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
368 return tolower(cfile) . '.rb' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
369 elseif getline('.') =~# '^\s*require_relative\s*\(["'']\).*\1\s*$' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
370 let cfile = expand('%:p:h') . '/' . matchstr(getline('.'),'\(["'']\)\zs.\{-\}\ze\1') . ext |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
371 elseif getline('.') =~# '^\s*\%(require[( ]\|load[( ]\|autoload[( ]:\w\+,\)\s*\%(::\)\=File\.expand_path(\(["'']\)\.\./.*\1,\s*__FILE__)\s*$' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
372 let target = matchstr(getline('.'),'\(["'']\)\.\.\zs/.\{-\}\ze\1') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
373 let cfile = expand('%:p:h') . target . ext |
4869 | 374 elseif getline('.') =~# '^\s*\%(require \|load \|autoload :\w\+,\)\s*\(["'']\).*\1\s*$' |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
375 let cfile = matchstr(getline('.'),'\(["'']\)\zs.\{-\}\ze\1') . ext |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
376 elseif pre.post =~# '\<File.expand_path[( ].*[''"]\{2\}, *__FILE__\>' && cfile =~# '^\.\.' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
377 let cfile = expand('%:p:h') . strpart(cfile, 2) |
4869 | 378 else |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
379 return substitute(cfile, '\C\v^(.*):(\d+)%(:in)=$', '+\2 \1', '') |
4869 | 380 endif |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
381 let cwdpat = '^\M' . substitute(getcwd(), '[\/]', '\\[\\/]', 'g').'\ze\[\/]' |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
382 let cfile = substitute(cfile, cwdpat, '.', '') |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
383 if fnameescape(cfile) !=# cfile |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
384 return '+ '.fnameescape(cfile) |
4869 | 385 else |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4869
diff
changeset
|
386 return cfile |
4869 | 387 endif |
388 endfunction | |
389 | |
530 | 390 " |
391 " Instructions for enabling "matchit" support: | |
392 " | |
393 " 1. Look for the latest "matchit" plugin at | |
394 " | |
1123 | 395 " http://www.vim.org/scripts/script.php?script_id=39 |
530 | 396 " |
397 " It is also packaged with Vim, in the $VIMRUNTIME/macros directory. | |
398 " | |
399 " 2. Copy "matchit.txt" into a "doc" directory (e.g. $HOME/.vim/doc). | |
400 " | |
401 " 3. Copy "matchit.vim" into a "plugin" directory (e.g. $HOME/.vim/plugin). | |
402 " | |
403 " 4. Ensure this file (ftplugin/ruby.vim) is installed. | |
404 " | |
405 " 5. Ensure you have this line in your $HOME/.vimrc: | |
1123 | 406 " filetype plugin on |
530 | 407 " |
408 " 6. Restart Vim and create the matchit documentation: | |
409 " | |
1123 | 410 " :helptags ~/.vim/doc |
530 | 411 " |
412 " Now you can do ":help matchit", and you should be able to use "%" on Ruby | |
1123 | 413 " keywords. Try ":echo b:match_words" to be sure. |
530 | 414 " |
1123 | 415 " Thanks to Mark J. Reed for the instructions. See ":help vimrc" for the |
530 | 416 " locations of plugin directories, etc., as there are several options, and it |
417 " differs on Windows. Email gsinclair@soyabean.com.au if you need help. | |
418 " | |
419 | |
1621 | 420 " vim: nowrap sw=2 sts=2 ts=8: |