annotate runtime/ftplugin/ruby.vim @ 10048:43efa4f5a8ea

commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 30 23:26:57 2016 +0200 Updated runtime files. Remove version checks for Vim older than 6.0.
author Christian Brabandt <cb@256bit.org>
date Tue, 30 Aug 2016 23:30:09 +0200
parents a5352e73dc00
children f0f06837a699
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim filetype plugin
831
f24a95dae8ee updated for version 7.0d05
vimboss
parents: 829
diff changeset
2 " Language: Ruby
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
4 " URL: https://github.com/vim-ruby/vim-ruby
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
5 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
6 " ----------------------------------------------------------------------------
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 if (exists("b:did_ftplugin"))
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
9 finish
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 let b:did_ftplugin = 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
13 let s:cpo_save = &cpo
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
14 set cpo&vim
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
15
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
16 if has("gui_running") && !has("gui_win32")
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
17 setlocal keywordprg=ri\ -T\ -f\ bs
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
18 else
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
19 setlocal keywordprg=ri
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
20 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
21
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
22 " Matchit support
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
23 if exists("loaded_matchit") && !exists("b:match_words")
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
24 let b:match_ignorecase = 0
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
25
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
26 let b:match_words =
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
27 \ '\<\%(if\|unless\|case\|while\|until\|for\|do\|class\|module\|def\|begin\)\>=\@!' .
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
28 \ ':' .
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
29 \ '\<\%(else\|elsif\|ensure\|when\|rescue\|break\|redo\|next\|retry\)\>' .
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
30 \ ':' .
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 4869
diff changeset
31 \ '\%(^\|[^.\:@$]\)\@<=\<end\:\@!\>' .
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
32 \ ',{:},\[:\],(:)'
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
33
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
34 let b:match_skip =
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
35 \ "synIDattr(synID(line('.'),col('.'),0),'name') =~ '" .
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
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
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
38 \ "Interpolation\\|NoInterpolation\\|Comment\\|Documentation\\|" .
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
39 \ "ConditionalModifier\\|RepeatModifier\\|OptionalDo\\|" .
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
40 \ "Function\\|BlockArgument\\|KeywordAsMethod\\|ClassVariable\\|" .
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
41 \ "InstanceVariable\\|GlobalVariable\\|Symbol\\)\\>'"
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
42 endif
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
43
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
44 setlocal formatoptions-=t formatoptions+=croql
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
45
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
48 setlocal suffixesadd=.rb
831
f24a95dae8ee updated for version 7.0d05
vimboss
parents: 829
diff changeset
49
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
50 if exists("&ofu") && has("ruby")
831
f24a95dae8ee updated for version 7.0d05
vimboss
parents: 829
diff changeset
51 setlocal omnifunc=rubycomplete#Complete
f24a95dae8ee updated for version 7.0d05
vimboss
parents: 829
diff changeset
52 endif
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
53
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
54 " To activate, :set ballooneval
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
55 if has('balloon_eval') && exists('+balloonexpr')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
56 setlocal balloonexpr=RubyBalloonexpr()
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
57 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
58
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
59
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
60 " TODO:
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
61 "setlocal define=^\\s*def
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
62
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
63 setlocal comments=:#
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
64 setlocal commentstring=#\ %s
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
65
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
66 if !exists('g:ruby_version_paths')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
67 let g:ruby_version_paths = {}
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
68 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
74 else
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
75 let prefix = ''
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
76 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
81 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
82
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
85 try
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
86 exe cd fnameescape(a:root)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
89 return path
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
92 endtry
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
93 endfunction
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
96 let path = join(map(copy(a:path), 'v:val ==# "." ? "" : v:val'), ',')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
97 if &g:path !~# '\v^\.%(,/%(usr|emx)/include)=,,$'
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
98 let path = substitute(&g:path,',,$',',','') . ',' . path
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
99 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
100 return path
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
101 endfunction
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
102
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
103 if !exists('b:ruby_version') && !exists('g:ruby_path') && isdirectory(expand('%:p:h'))
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
106 let b:ruby_version = get(readfile(s:version_file, '', 1), '')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
107 if !has_key(g:ruby_version_paths, b:ruby_version)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
108 let g:ruby_version_paths[b:ruby_version] = s:query_path(fnamemodify(s:version_file, ':p:h'))
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
109 endif
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
110 endif
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
111 endif
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
112
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
113 if exists("g:ruby_path")
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
114 let s:ruby_path = type(g:ruby_path) == type([]) ? join(g:ruby_path, ',') : g:ruby_path
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
115 elseif has_key(g:ruby_version_paths, get(b:, 'ruby_version', ''))
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
116 let s:ruby_paths = g:ruby_version_paths[b:ruby_version]
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
117 let s:ruby_path = s:build_path(s:ruby_paths)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
118 else
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
119 if !exists('g:ruby_default_path')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
120 if has("ruby") && has("win32")
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
121 ruby ::VIM::command( 'let g:ruby_default_path = split("%s",",")' % $:.join(%q{,}) )
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
122 elseif executable('ruby')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
123 let g:ruby_default_path = s:query_path($HOME)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
124 else
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
125 let g:ruby_default_path = map(split($RUBYLIB,':'), 'v:val ==# "." ? "" : v:val')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
126 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
127 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
128 let s:ruby_paths = g:ruby_default_path
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
129 let s:ruby_path = s:build_path(s:ruby_paths)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
130 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
131
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
132 if stridx(&l:path, s:ruby_path) == -1
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
133 let &l:path = s:ruby_path
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
134 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
135 if exists('s:ruby_paths') && stridx(&l:tags, join(map(copy(s:ruby_paths),'v:val."/tags"'),',')) == -1
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
136 let &l:tags = &tags . ',' . join(map(copy(s:ruby_paths),'v:val."/tags"'),',')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
137 endif
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
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
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
140 let b:browsefilter = "Ruby Source Files (*.rb)\t*.rb\n" .
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
141 \ "All Files (*.*)\t*.*\n"
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
142 endif
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
143
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
144 let b:undo_ftplugin = "setl fo< inc< inex< sua< def< com< cms< path< tags< kp<"
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
145 \."| unlet! b:browsefilter b:match_ignorecase b:match_words b:match_skip"
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
146 \."| if exists('&ofu') && has('ruby') | setl ofu< | endif"
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
147 \."| if has('balloon_eval') && exists('+bexpr') | setl bexpr< | endif"
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
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
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
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
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
165 nnoremap <silent> <buffer> [m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','b','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
166 nnoremap <silent> <buffer> ]m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
167 nnoremap <silent> <buffer> [M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','b','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
168 nnoremap <silent> <buffer> ]M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
169 xnoremap <silent> <buffer> [m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','b','v')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
170 xnoremap <silent> <buffer> ]m :<C-U>call <SID>searchsyn('\<def\>','rubyDefine','','v')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
171 xnoremap <silent> <buffer> [M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','b','v')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
172 xnoremap <silent> <buffer> ]M :<C-U>call <SID>searchsyn('\<end\>','rubyDefine','','v')<CR>
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
173
2225
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
174 nnoremap <silent> <buffer> [[ :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','b','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
175 nnoremap <silent> <buffer> ]] :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
176 nnoremap <silent> <buffer> [] :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','b','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
177 nnoremap <silent> <buffer> ][ :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','','n')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
178 xnoremap <silent> <buffer> [[ :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','b','v')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
179 xnoremap <silent> <buffer> ]] :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>','rubyModule\<Bar>rubyClass','','v')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
180 xnoremap <silent> <buffer> [] :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','b','v')<CR>
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
181 xnoremap <silent> <buffer> ][ :<C-U>call <SID>searchsyn('\<end\>','rubyModule\<Bar>rubyClass','','v')<CR>
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
182
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
183 let b:undo_ftplugin = b:undo_ftplugin
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
184 \."| sil! exe 'unmap <buffer> [[' | sil! exe 'unmap <buffer> ]]' | sil! exe 'unmap <buffer> []' | sil! exe 'unmap <buffer> ]['"
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
185 \."| sil! exe 'unmap <buffer> [m' | sil! exe 'unmap <buffer> ]m' | sil! exe 'unmap <buffer> [M' | sil! exe 'unmap <buffer> ]M'"
2225
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
188 onoremap <silent> <buffer> im :<C-U>call <SID>wrap_i('[m',']M')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
189 onoremap <silent> <buffer> am :<C-U>call <SID>wrap_a('[m',']M')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
190 xnoremap <silent> <buffer> im :<C-U>call <SID>wrap_i('[m',']M')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
191 xnoremap <silent> <buffer> am :<C-U>call <SID>wrap_a('[m',']M')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
192 let b:undo_ftplugin = b:undo_ftplugin
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
193 \."| sil! exe 'ounmap <buffer> im' | sil! exe 'ounmap <buffer> am'"
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
194 \."| sil! exe 'xunmap <buffer> im' | sil! exe 'xunmap <buffer> am'"
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
195 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
198 onoremap <silent> <buffer> iM :<C-U>call <SID>wrap_i('[[','][')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
199 onoremap <silent> <buffer> aM :<C-U>call <SID>wrap_a('[[','][')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
200 xnoremap <silent> <buffer> iM :<C-U>call <SID>wrap_i('[[','][')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
201 xnoremap <silent> <buffer> aM :<C-U>call <SID>wrap_a('[[','][')<CR>
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
202 let b:undo_ftplugin = b:undo_ftplugin
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
203 \."| sil! exe 'ounmap <buffer> iM' | sil! exe 'ounmap <buffer> aM'"
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
204 \."| sil! exe 'xunmap <buffer> iM' | sil! exe 'xunmap <buffer> aM'"
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
205 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
225 endif
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
226
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
227 let &cpo = s:cpo_save
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
228 unlet s:cpo_save
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
229
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
230 if exists("g:did_ruby_ftplugin_functions")
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
231 finish
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
232 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
233 let g:did_ruby_ftplugin_functions = 1
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
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
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
236 if !exists('s:ri_found')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
237 let s:ri_found = executable('ri')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
238 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
239 if s:ri_found
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
240 let line = getline(v:beval_lnum)
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
241 let b = matchstr(strpart(line,0,v:beval_col),'\%(\w\|[:.]\)*$')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
242 let a = substitute(matchstr(strpart(line,v:beval_col),'^\w*\%([?!]\|\s*=\)\?'),'\s\+','','g')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
243 let str = b.a
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
244 let before = strpart(line,0,v:beval_col-strlen(b))
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
245 let after = strpart(line,v:beval_col+strlen(a))
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
246 if str =~ '^\.'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
247 let str = substitute(str,'^\.','#','g')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
248 if before =~ '\]\s*$'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
249 let str = 'Array'.str
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
250 elseif before =~ '}\s*$'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
251 " False positives from blocks here
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
252 let str = 'Hash'.str
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
253 elseif before =~ "[\"'`]\\s*$" || before =~ '\$\d\+\s*$'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
254 let str = 'String'.str
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
255 elseif before =~ '\$\d\+\.\d\+\s*$'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
256 let str = 'Float'.str
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
257 elseif before =~ '\$\d\+\s*$'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
258 let str = 'Integer'.str
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
259 elseif before =~ '/\s*$'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
260 let str = 'Regexp'.str
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
261 else
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
262 let str = substitute(str,'^#','.','')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
263 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
264 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
265 let str = substitute(str,'.*\.\s*to_f\s*\.\s*','Float#','')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
266 let str = substitute(str,'.*\.\s*to_i\%(nt\)\=\s*\.\s*','Integer#','')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
267 let str = substitute(str,'.*\.\s*to_s\%(tr\)\=\s*\.\s*','String#','')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
268 let str = substitute(str,'.*\.\s*to_sym\s*\.\s*','Symbol#','')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
269 let str = substitute(str,'.*\.\s*to_a\%(ry\)\=\s*\.\s*','Array#','')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
270 let str = substitute(str,'.*\.\s*to_proc\s*\.\s*','Proc#','')
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
271 if str !~ '^\w'
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
272 return ''
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
273 endif
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
274 silent! let res = substitute(system("ri -f rdoc -T \"".str.'"'),'\n$','','')
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
275 if res =~ '^Nothing known about' || res =~ '^Bad argument:' || res =~ '^More than one method'
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
276 return ''
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
277 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
278 return res
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
279 else
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
280 return ""
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
281 endif
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
282 endfunction
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
286 norm! m'
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
287 if a:mode ==# 'v'
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
288 norm! gv
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
289 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
290 let i = 0
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
291 while i < cnt
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
292 let i = i + 1
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
293 let line = line('.')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
294 let col = col('.')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
295 let pos = search(a:pattern,'W'.a:flags)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
296 while pos != 0 && s:synname() !~# a:syn
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
297 let pos = search(a:pattern,'W'.a:flags)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
298 endwhile
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
299 if pos == 0
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
300 call cursor(line,col)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
301 return
2225
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
302 endif
4869
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
303 endwhile
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
304 endfunction
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
307 return synIDattr(synID(line('.'),col('.'),0),'name')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
308 endfunction
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
311 execute 'norm k'.a:forward
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
312 let line = line('.')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
313 execute 'norm '.a:back
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
314 if line('.') == line - 1
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
315 return s:wrap_a(a:back,a:forward)
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
316 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
317 execute 'norm jV'.a:forward.'k'
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
318 endfunction
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
321 execute 'norm '.a:forward
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
322 if line('.') < line('$') && getline(line('.')+1) ==# ''
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
323 let after = 1
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
324 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
325 execute 'norm '.a:back
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
326 while getline(line('.')-1) =~# '^\s*#' && line('.')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
327 -
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
328 endwhile
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
329 if exists('after')
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
330 execute 'norm V'.a:forward.'j'
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
331 elseif line('.') > 1 && getline(line('.')-1) =~# '^\s*$'
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
332 execute 'norm kV'.a:forward
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
333 else
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
334 execute 'norm V'.a:forward
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
335 endif
1215
1d08aac0aea9 updated for version 7.1b
vimboss
parents: 1123
diff changeset
336 endfunction
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
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
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
339 let asciicode = '\%(\w\|[]})\"'."'".']\)\@<!\%(?\%(\\M-\\C-\|\\C-\\M-\|\\M-\\c\|\\c\\M-\|\\c\|\\C-\|\\M-\)\=\%(\\\o\{1,3}\|\\x\x\{1,2}\|\\\=\S\)\)'
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
340 let number = '\%(\%(\w\|[]})\"'."'".']\s*\)\@<!-\)\=\%(\<[[:digit:]_]\+\%(\.[[:digit:]_]\+\)\=\%([Ee][[:digit:]_]\+\)\=\>\|\<0[xXbBoOdD][[:xdigit:]_]\+\>\)\|'.asciicode
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
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
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
343 let global = '$\%([!$&"'."'".'*+,./:;<=>?@\`~]\|-\=\w\+\>\)'
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
344 let symbolizable = '\%(\%(@@\=\)\w\+\>\|'.global.'\|'.method.'\|'.operator.'\)'
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
345 let pattern = '\C\s*\%('.number.'\|\%(:\@<!:\)\='.symbolizable.'\)'
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
346 let [lnum, col] = searchpos(pattern,'bcn',line('.'))
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
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
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
349 return stripped == '' ? expand("<cword>") : stripped
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
350 endfunction
dd5c1983e355 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
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
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
387 endif
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
388 endfunction
a5352e73dc00 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2225
diff changeset
389
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
390 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
391 " Instructions for enabling "matchit" support:
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
392 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
393 " 1. Look for the latest "matchit" plugin at
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
394 "
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
395 " http://www.vim.org/scripts/script.php?script_id=39
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
396 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
397 " It is also packaged with Vim, in the $VIMRUNTIME/macros directory.
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
398 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
399 " 2. Copy "matchit.txt" into a "doc" directory (e.g. $HOME/.vim/doc).
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
400 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
401 " 3. Copy "matchit.vim" into a "plugin" directory (e.g. $HOME/.vim/plugin).
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
402 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
403 " 4. Ensure this file (ftplugin/ruby.vim) is installed.
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
404 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
405 " 5. Ensure you have this line in your $HOME/.vimrc:
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
406 " filetype plugin on
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
407 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
408 " 6. Restart Vim and create the matchit documentation:
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
409 "
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
410 " :helptags ~/.vim/doc
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
411 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
412 " Now you can do ":help matchit", and you should be able to use "%" on Ruby
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
413 " keywords. Try ":echo b:match_words" to be sure.
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
414 "
1123
c4cd8ad60bee updated for version 7.1a
vimboss
parents: 867
diff changeset
415 " Thanks to Mark J. Reed for the instructions. See ":help vimrc" for the
530
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
416 " locations of plugin directories, etc., as there are several options, and it
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
417 " differs on Windows. Email gsinclair@soyabean.com.au if you need help.
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
418 "
339999b511a0 updated for version 7.0148
vimboss
parents: 7
diff changeset
419
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1215
diff changeset
420 " vim: nowrap sw=2 sts=2 ts=8: