vimdb 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gemspec +3 -2
- data/CHANGELOG.rdoc +5 -0
- data/README.md +16 -8
- data/Rakefile +1 -1
- data/lib/vimdb.rb +3 -3
- data/lib/vimdb/commands.rb +70 -0
- data/lib/vimdb/db.rb +1 -1
- data/lib/vimdb/item.rb +22 -6
- data/lib/vimdb/keys.rb +13 -14
- data/lib/vimdb/options.rb +4 -6
- data/lib/vimdb/runner.rb +10 -1
- data/lib/vimdb/version.rb +1 -1
- data/spec/.vimdbrc +1 -0
- data/spec/commands_spec.rb +48 -0
- data/spec/deps.rip +1 -0
- data/spec/fixtures/commands_command +257 -0
- data/spec/fixtures/commands_index +1606 -0
- data/spec/fixtures/keys_index +1606 -0
- data/spec/fixtures/keys_leader +1 -0
- data/spec/fixtures/keys_map +499 -0
- data/spec/fixtures/options_help +359 -0
- data/spec/helper.rb +26 -0
- data/spec/keys_spec.rb +80 -0
- data/spec/options_spec.rb +13 -0
- data/spec/runner_spec.rb +58 -0
- metadata +27 -2
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,499 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
s <Tab> * <Esc>i<Right><C-R>=TriggerSnippet()<CR>
|
4
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
5
|
+
<NL> * <C-W>_
|
6
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
7
|
+
<C-K> * <C-W>=
|
8
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
9
|
+
n <C-L> * :nohls<CR><C-L>
|
10
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
11
|
+
n <C-N> * :<C-U>YRReplace '1', 'p'<CR>
|
12
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
13
|
+
n <C-P> * :<C-U>YRReplace '-1', 'P'<CR>
|
14
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
15
|
+
n <C-W>o <Plug>ZoomWin
|
16
|
+
Last set from ~/code/fork/vimfiles/plugins/zoomwin/plugin/ZoomWinPlugin.vim
|
17
|
+
s <C-X> * b<BS><C-X>
|
18
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
19
|
+
<Esc>ta :ta _tag_
|
20
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
21
|
+
<Esc>ts :stj _tag_
|
22
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
23
|
+
<Esc>tv :!vo_maketags.pl %<CR>
|
24
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
25
|
+
<Esc>ax :let arg = inputdialog("Arguments?: ","") | exe "new | %! ./"."# ". arg <CR>
|
26
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
27
|
+
<Esc>aw :new |r!
|
28
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
29
|
+
<Esc>am :!chmod +x %<CR>
|
30
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
31
|
+
<Esc>ac :lcd %:p:h <CR>
|
32
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
33
|
+
<Esc>oh :nohls <CR>
|
34
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
35
|
+
<Esc>ol :set invlist <CR>
|
36
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
37
|
+
<Esc>oa :set invautowrite <CR>
|
38
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
39
|
+
<Esc>on :set invnumber <CR>
|
40
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
41
|
+
<Esc>a [I:let nr = input("Which one: ")|exe "normal " . nr ."[\t"<CR>
|
42
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
43
|
+
<Esc>h yaw :exe "h ".@" <CR>
|
44
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
45
|
+
<Esc>s :w<CR>
|
46
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
47
|
+
<Esc>l :exe "normal v$hy" | exe "/".@" <CR>
|
48
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
49
|
+
<Esc>b :buffers <CR>
|
50
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
51
|
+
<Esc>q * :q!<CR>
|
52
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
53
|
+
<Esc>x * :q<CR>
|
54
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
55
|
+
<C-_>s * :TCommentAs <C-R>=&ft<CR>_
|
56
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
57
|
+
<C-_>n * :TCommentAs <C-R>=&ft<CR><Space>
|
58
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
59
|
+
<C-_>a * :TCommentAs<Space>
|
60
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
61
|
+
<C-_>b * :TCommentBlock<CR>
|
62
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
63
|
+
v <C-_>r * :TCommentRight<CR>
|
64
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
65
|
+
v <C-_>i * :TCommentInline<CR>
|
66
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
67
|
+
no <C-_>r * :TCommentRight<CR>
|
68
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
69
|
+
<C-_><Space> * :TComment<Space>
|
70
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
71
|
+
<C-_>p * m`vip:TComment<CR>``
|
72
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
73
|
+
v <C-_><C-_> * :TCommentMaybeInline<CR>
|
74
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
75
|
+
no <C-_><C-_> * :TComment<CR>
|
76
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
77
|
+
<Space>ys :YRShow<CR>
|
78
|
+
Last set from ~/code/fork/vimfiles/after/plugin/yankring.vim
|
79
|
+
<Space>ri :Rintegrationtest
|
80
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-rails.vim
|
81
|
+
<Space>rf :Rfunctionaltest
|
82
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-rails.vim
|
83
|
+
<Space>ru :Runittest
|
84
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-rails.vim
|
85
|
+
<Space>rv :Rview
|
86
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-rails.vim
|
87
|
+
<Space>rc :Rcontroller
|
88
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-rails.vim
|
89
|
+
<Space>rm :Rmodel
|
90
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-rails.vim
|
91
|
+
<Space>gt :Gstatus<CR>
|
92
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-fugitive.vim
|
93
|
+
<Space>ab :Btabedit<Space>
|
94
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-bundler.vim
|
95
|
+
<Space>tl :Tlist<CR>
|
96
|
+
Last set from ~/code/fork/vimfiles/after/plugin/taglist.vim
|
97
|
+
<Space>t> :Tabularize hash<CR>
|
98
|
+
Last set from ~/code/fork/vimfiles/after/plugin/tabular.vim
|
99
|
+
<Space>t: :Tabularize symbols<CR>
|
100
|
+
Last set from ~/code/fork/vimfiles/after/plugin/tabular.vim
|
101
|
+
<Space>tz :Tabularize<Space>
|
102
|
+
Last set from ~/code/fork/vimfiles/after/plugin/tabular.vim
|
103
|
+
<Space>t= :Tabularize assignment<CR>
|
104
|
+
Last set from ~/code/fork/vimfiles/after/plugin/tabular.vim
|
105
|
+
<Space>th :Tabularize /:\zs<CR>
|
106
|
+
Last set from ~/code/fork/vimfiles/after/plugin/tabular.vim
|
107
|
+
<Space>ta :Tabularize /|<CR>
|
108
|
+
Last set from ~/code/fork/vimfiles/after/plugin/tabular.vim
|
109
|
+
<Space>gs :GrepSnippets<Space>
|
110
|
+
Last set from ~/code/fork/vimfiles/after/plugin/snipmate.vim
|
111
|
+
<Space>an :NERDTreeToggle<CR>
|
112
|
+
Last set from ~/code/fork/vimfiles/after/plugin/nerdtree.vim
|
113
|
+
<Space>ag :Gist<Space>
|
114
|
+
Last set from ~/code/fork/vimfiles/after/plugin/gist.vim
|
115
|
+
<Space>ac :ConqueTermTab bash<CR>
|
116
|
+
Last set from ~/code/fork/vimfiles/after/plugin/conque.vim
|
117
|
+
n <Space>tb :CommandTBuffer<CR>
|
118
|
+
Last set from ~/code/fork/vimfiles/after/plugin/command-t.vim
|
119
|
+
n <Space>tf :CommandTFlush<CR>:CommandT<CR>
|
120
|
+
Last set from ~/code/fork/vimfiles/after/plugin/command-t.vim
|
121
|
+
n <Space>d :CommandT<CR>
|
122
|
+
Last set from ~/code/fork/vimfiles/after/plugin/command-t.vim
|
123
|
+
<Space>_s * :TCommentAs <C-R>=&ft<CR>_
|
124
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
125
|
+
<Space>_n * :TCommentAs <C-R>=&ft<CR><Space>
|
126
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
127
|
+
<Space>_a * :TCommentAs<Space>
|
128
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
129
|
+
<Space>_b * :TCommentBlock<CR>
|
130
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
131
|
+
x <Space>_r * :TCommentRight<CR>
|
132
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
133
|
+
nos<Space>_r * :TCommentRight<CR>
|
134
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
135
|
+
x <Space>_i * :TCommentInline<CR>
|
136
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
137
|
+
<Space>_<Space> * :TComment<Space>
|
138
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
139
|
+
<Space>_p * vip:TComment<CR>
|
140
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
141
|
+
x <Space>__ * :TCommentMaybeInline<CR>
|
142
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
143
|
+
nos<Space>__ * :TComment<CR>
|
144
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
145
|
+
n <Space>Z <Plug>SearchFoldRestore
|
146
|
+
Last set from ~/code/fork/vimfiles/plugins/searchfold.vim/plugin/searchfold_0.9.vim
|
147
|
+
n <Space>iz <Plug>SearchFoldInverse
|
148
|
+
Last set from ~/code/fork/vimfiles/plugins/searchfold.vim/plugin/searchfold_0.9.vim
|
149
|
+
n <Space>z <Plug>SearchFoldNormal
|
150
|
+
Last set from ~/code/fork/vimfiles/plugins/searchfold.vim/plugin/searchfold_0.9.vim
|
151
|
+
n <Space>b :CommandTBuffer<CR>
|
152
|
+
Last set from ~/code/fork/vimfiles/plugins/command-t/plugin/command-t.vim
|
153
|
+
n <Space>t :CommandT<CR>
|
154
|
+
Last set from ~/code/fork/vimfiles/plugins/command-t/plugin/command-t.vim
|
155
|
+
<Space>, :set imi=1<CR>
|
156
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
157
|
+
<Space>tj :exe ":tselect /^".expand("<cword>")<CR>
|
158
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
159
|
+
<Space>tt :!ctags -R --exclude='*.js'<CR>
|
160
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
161
|
+
<Space>yf :let @* = expand("%:p")<CR>:echo "Copied"<CR>
|
162
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
163
|
+
n <Space>c * @:
|
164
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
165
|
+
n <Space>l * <C-W>l
|
166
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
167
|
+
n <Space>k * <C-W>k
|
168
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
169
|
+
n <Space>j * <C-W>j
|
170
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
171
|
+
n <Space>h * <C-W>h
|
172
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
173
|
+
<Space>p :cp<CR>
|
174
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
175
|
+
<Space>n :cn<CR>
|
176
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
177
|
+
<Space>tc :tabnew<CR>
|
178
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
179
|
+
<Space>tm :tabmove<Space>
|
180
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
181
|
+
<Space>tp :tabprevious<CR>
|
182
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
183
|
+
<Space>tn :tabnext<CR>
|
184
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
185
|
+
<Space>to :tabonly<CR>
|
186
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
187
|
+
<Space>tq :tabclose<CR>
|
188
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
189
|
+
<Space>te :tabedit<Space>
|
190
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
191
|
+
n <Space>v * <C-W><C-V><C-L>:e ~/.vimrc<CR>
|
192
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
193
|
+
n <Space>e * :e <C-R>=expand("%:p:h") . "/" <CR>
|
194
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
195
|
+
<Space>gv :GrepVim<Space>
|
196
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
197
|
+
<Space>gk :GrepKeys<Space>
|
198
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
199
|
+
<Space>gp :GrepPlugins<Space>
|
200
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
201
|
+
<Space>gw :exe ":GitGrep " expand("<cword>")<CR>
|
202
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
203
|
+
<Space>gg :GitGrep<Space>
|
204
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
205
|
+
<Space>gr :Grep<Space>
|
206
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
207
|
+
<Space>f :Ack<Space>
|
208
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
209
|
+
n <Space>s * :call StripTrailingWhiteSpace()<CR>
|
210
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
211
|
+
<Space>w :call OpenURL()<CR>
|
212
|
+
Last set from ~/code/fork/vimfiles/rc/functions.vim
|
213
|
+
v # :TComment<CR>
|
214
|
+
Last set from ~/code/fork/vimfiles/after/plugin/tcomment.vim
|
215
|
+
o $ YRMapsExpression("<SNR>35_", "$")
|
216
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
217
|
+
s % * b<BS>%
|
218
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
219
|
+
s ' * b<BS>'
|
220
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
221
|
+
o + YRMapsExpression("<SNR>35_", "+")
|
222
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
223
|
+
,. :source ~/.vim/plugins/vim-vimoutliner/ftplugin/vo_base.vim<CR>
|
224
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
225
|
+
o , YRMapsExpression("<SNR>35_", ",")
|
226
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
227
|
+
-sw dd v ]z <<
|
228
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
229
|
+
-f O <Esc> k dd
|
230
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
231
|
+
-k :call Omove("k") <CR>
|
232
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
233
|
+
-j :call Omove("j") <CR>
|
234
|
+
Last set from ~/code/fork/vimfiles/after/plugin/vim-vimoutliner.vim
|
235
|
+
o - YRMapsExpression("<SNR>35_", "-")
|
236
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
237
|
+
n . YRMapsExpression("<SNR>35_", ".")
|
238
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
239
|
+
o / YRMapsExpression("<SNR>35_", "/", 1)
|
240
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
241
|
+
v / * /\v
|
242
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
243
|
+
n / * /\v
|
244
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
245
|
+
o 0 YRMapsExpression("<SNR>35_", "0")
|
246
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
247
|
+
o ; YRMapsExpression("<SNR>35_", ";")
|
248
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
249
|
+
o ? YRMapsExpression("<SNR>35_", "?", 1)
|
250
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
251
|
+
n @ YRMapsExpression("<SNR>35_", "@", "1")
|
252
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
253
|
+
o B YRMapsExpression("<SNR>35_", "B")
|
254
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
255
|
+
n D D<SNR>35_yrrecord
|
256
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
257
|
+
v D y'>p
|
258
|
+
Last set from ~/code/fork/vimfiles/rc/keys.vim
|
259
|
+
o E YRMapsExpression("<SNR>35_", "E")
|
260
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
261
|
+
o F YRMapsExpression("<SNR>35_", "F", 1)
|
262
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
263
|
+
o G YRMapsExpression("<SNR>35_", "G")
|
264
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
265
|
+
o H YRMapsExpression("<SNR>35_", "H")
|
266
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
267
|
+
o L YRMapsExpression("<SNR>35_", "L")
|
268
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
269
|
+
o M YRMapsExpression("<SNR>35_", "M")
|
270
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
271
|
+
x P * :<C-U>YRPaste 'P', 'v'<CR>
|
272
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
273
|
+
n P * :<C-U>YRPaste 'P'<CR>
|
274
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
275
|
+
x S <Plug>VSurround
|
276
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
277
|
+
o T YRMapsExpression("<SNR>35_", "T", 1)
|
278
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
279
|
+
s U * b<BS>U
|
280
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
281
|
+
o W YRMapsExpression("<SNR>35_", "W")
|
282
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
283
|
+
n X X<SNR>35_yrrecord
|
284
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
285
|
+
n Y Y<SNR>35_yrrecord
|
286
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
287
|
+
s \ * b<BS>\
|
288
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
289
|
+
s ^ * b<BS>^
|
290
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
291
|
+
o ^ YRMapsExpression("<SNR>35_", "^")
|
292
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
293
|
+
o _ YRMapsExpression("<SNR>35_", "_")
|
294
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
295
|
+
s ` * b<BS>`
|
296
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
297
|
+
o a` YRMapsExpression("<SNR>35_", "a`")
|
298
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
299
|
+
o a' YRMapsExpression("<SNR>35_", "a'")
|
300
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
301
|
+
o a" YRMapsExpression("<SNR>35_", "a\"")
|
302
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
303
|
+
o aB YRMapsExpression("<SNR>35_", "aB")
|
304
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
305
|
+
o a{ YRMapsExpression("<SNR>35_", "a{")
|
306
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
307
|
+
o a} YRMapsExpression("<SNR>35_", "a}")
|
308
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
309
|
+
o at YRMapsExpression("<SNR>35_", "at")
|
310
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
311
|
+
o a< YRMapsExpression("<SNR>35_", "a<")
|
312
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
313
|
+
o a> YRMapsExpression("<SNR>35_", "a>")
|
314
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
315
|
+
o ab YRMapsExpression("<SNR>35_", "ab")
|
316
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
317
|
+
o a( YRMapsExpression("<SNR>35_", "a(")
|
318
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
319
|
+
o a) YRMapsExpression("<SNR>35_", "a)")
|
320
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
321
|
+
o a[ YRMapsExpression("<SNR>35_", "a[")
|
322
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
323
|
+
o a] YRMapsExpression("<SNR>35_", "a]")
|
324
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
325
|
+
o ap YRMapsExpression("<SNR>35_", "ap")
|
326
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
327
|
+
o as YRMapsExpression("<SNR>35_", "as")
|
328
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
329
|
+
o aW YRMapsExpression("<SNR>35_", "aW")
|
330
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
331
|
+
o aw YRMapsExpression("<SNR>35_", "aw")
|
332
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
333
|
+
o b YRMapsExpression("<SNR>35_", "b")
|
334
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
335
|
+
n cs <Plug>Csurround
|
336
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
337
|
+
x d * :YRDeleteRange 'v'<CR>
|
338
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
339
|
+
o d YRMapsExpression("<SNR>35_", "d")
|
340
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
341
|
+
n ds <Plug>Dsurround
|
342
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
343
|
+
o e YRMapsExpression("<SNR>35_", "e")
|
344
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
345
|
+
o f YRMapsExpression("<SNR>35_", "f", 1)
|
346
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
347
|
+
n gx <Plug>NetrwBrowseX
|
348
|
+
Last set from /usr/local/Cellar/macvim/7.3-57/MacVim.app/Contents/Resources/vim/runtime/plugin/netrwPlugin.vim
|
349
|
+
n gp * :<C-U>YRPaste 'gp'<CR>
|
350
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
351
|
+
n gP * :<C-U>YRPaste 'gP'<CR>
|
352
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
353
|
+
o gE YRMapsExpression("<SNR>35_", "gE")
|
354
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
355
|
+
o ge YRMapsExpression("<SNR>35_", "ge")
|
356
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
357
|
+
o gg YRMapsExpression("<SNR>35_", "gg")
|
358
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
359
|
+
o gj YRMapsExpression("<SNR>35_", "gj")
|
360
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
361
|
+
o gk YRMapsExpression("<SNR>35_", "gk")
|
362
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
363
|
+
o g$ YRMapsExpression("<SNR>35_", "g$")
|
364
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
365
|
+
o gm YRMapsExpression("<SNR>35_", "gm")
|
366
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
367
|
+
o g^ YRMapsExpression("<SNR>35_", "g^")
|
368
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
369
|
+
o g_ YRMapsExpression("<SNR>35_", "g_")
|
370
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
371
|
+
x gS <Plug>VgSurround
|
372
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
373
|
+
x gC * :TCommentMaybeInline<CR>
|
374
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
375
|
+
n gCc * :let w:tcommentPos = getpos(".") | set opfunc=tcomment#OperatorLineAnyway<CR>g@$
|
376
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
377
|
+
n gC * :let w:tcommentPos = getpos(".") | set opfunc=tcomment#OperatorAnyway<CR>g@
|
378
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
379
|
+
x gc * :TCommentMaybeInline<CR>
|
380
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
381
|
+
n gcc * :let w:tcommentPos = getpos(".") | set opfunc=tcomment#OperatorLine<CR>g@$
|
382
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
383
|
+
n gc * :let w:tcommentPos = getpos(".") | set opfunc=tcomment#Operator<CR>g@
|
384
|
+
Last set from ~/code/fork/vimfiles/plugins/tcomment_vim/plugin/tcomment.vim
|
385
|
+
o h YRMapsExpression("<SNR>35_", "h")
|
386
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
387
|
+
o i` YRMapsExpression("<SNR>35_", "i`")
|
388
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
389
|
+
o i' YRMapsExpression("<SNR>35_", "i'")
|
390
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
391
|
+
o i" YRMapsExpression("<SNR>35_", "i\"")
|
392
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
393
|
+
o iB YRMapsExpression("<SNR>35_", "iB")
|
394
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
395
|
+
o i{ YRMapsExpression("<SNR>35_", "i{")
|
396
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
397
|
+
o i} YRMapsExpression("<SNR>35_", "i}")
|
398
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
399
|
+
o it YRMapsExpression("<SNR>35_", "it")
|
400
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
401
|
+
o i< YRMapsExpression("<SNR>35_", "i<")
|
402
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
403
|
+
o i> YRMapsExpression("<SNR>35_", "i>")
|
404
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
405
|
+
o ib YRMapsExpression("<SNR>35_", "ib")
|
406
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
407
|
+
o i( YRMapsExpression("<SNR>35_", "i(")
|
408
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
409
|
+
o i) YRMapsExpression("<SNR>35_", "i)")
|
410
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
411
|
+
o i[ YRMapsExpression("<SNR>35_", "i[")
|
412
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
413
|
+
o i] YRMapsExpression("<SNR>35_", "i]")
|
414
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
415
|
+
o ip YRMapsExpression("<SNR>35_", "ip")
|
416
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
417
|
+
o is YRMapsExpression("<SNR>35_", "is")
|
418
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
419
|
+
o iW YRMapsExpression("<SNR>35_", "iW")
|
420
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
421
|
+
o iw YRMapsExpression("<SNR>35_", "iw")
|
422
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
423
|
+
o j YRMapsExpression("<SNR>35_", "j")
|
424
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
425
|
+
o k YRMapsExpression("<SNR>35_", "k")
|
426
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
427
|
+
o l YRMapsExpression("<SNR>35_", "l")
|
428
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
429
|
+
x p * :<C-U>YRPaste 'p', 'v'<CR>
|
430
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
431
|
+
n p * :<C-U>YRPaste 'p'<CR>
|
432
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
433
|
+
x s * :<C-U>echoerr 'surround.vim: Visual mode s has been removed in favor of S'<CR>
|
434
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
435
|
+
o t YRMapsExpression("<SNR>35_", "t", 1)
|
436
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
437
|
+
o w YRMapsExpression("<SNR>35_", "w")
|
438
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
439
|
+
x x * :YRDeleteRange 'v'<CR>
|
440
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
441
|
+
n x x<SNR>35_yrrecord
|
442
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
443
|
+
x y * :YRYankRange 'v'<CR>
|
444
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
445
|
+
o y YRMapsExpression("<SNR>35_", "y")
|
446
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
447
|
+
n ySS <Plug>YSsurround
|
448
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
449
|
+
n ySs <Plug>YSsurround
|
450
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
451
|
+
n yss <Plug>Yssurround
|
452
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
453
|
+
n yS <Plug>YSurround
|
454
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
455
|
+
n ys <Plug>Ysurround
|
456
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
457
|
+
s <Left> * <Esc>bi
|
458
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
459
|
+
s <Right> * <Esc>a
|
460
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
461
|
+
s <BS> * b<BS>
|
462
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
463
|
+
s <S-Tab> * <Esc>i<Right><C-R>=BackwardsSnippet()<CR>
|
464
|
+
Last set from ~/code/fork/vimfiles/plugins/snipmate.vim/after/plugin/snipMate.vim
|
465
|
+
n <Plug>NetrwBrowseX * :call netrw#NetrwBrowseX(expand("<cWORD>"),0)<CR>
|
466
|
+
Last set from /usr/local/Cellar/macvim/7.3-57/MacVim.app/Contents/Resources/vim/runtime/plugin/netrwPlugin.vim
|
467
|
+
n <Plug>ZoomWin & :set lz<CR>:silent call ZoomWin#ZoomWin()<CR>:set nolz<CR>
|
468
|
+
Last set from ~/code/fork/vimfiles/plugins/zoomwin/plugin/ZoomWinPlugin.vim
|
469
|
+
n <SNR>35_yrrecord * :call YRRecord3()<CR>
|
470
|
+
Last set from ~/code/fork/vimfiles/plugins/yankring.vim/plugin/yankring.vim
|
471
|
+
v <Plug>VgSurround * :<C-U>call <SNR>34_opfunc(visualmode(),visualmode() ==# 'V' ? 0 : 1)<CR>
|
472
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
473
|
+
v <Plug>VSurround * :<C-U>call <SNR>34_opfunc(visualmode(),visualmode() ==# 'V' ? 1 : 0)<CR>
|
474
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
475
|
+
n <Plug>YSurround * :<C-U>set opfunc=<SNR>34_opfunc2<CR>g@
|
476
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
477
|
+
n <Plug>Ysurround * :<C-U>set opfunc=<SNR>34_opfunc<CR>g@
|
478
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
479
|
+
n <Plug>YSsurround * :<C-U>call <SNR>34_opfunc2(v:count1)<CR>
|
480
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
481
|
+
n <Plug>Yssurround * :<C-U>call <SNR>34_opfunc(v:count1)<CR>
|
482
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
483
|
+
n <Plug>Csurround * :<C-U>call <SNR>34_changesurround()<CR>
|
484
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
485
|
+
n <Plug>Dsurround * :<C-U>call <SNR>34_dosurround(<SNR>34_inputtarget())<CR>
|
486
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-surround/plugin/surround.vim
|
487
|
+
n <F11> * :call conque_term#exec_file()<CR>
|
488
|
+
Last set from ~/code/fork/vimfiles/plugins/vim-conque/plugin/conque_term.vim
|
489
|
+
n <Plug>SearchFoldRestore * :<C-U>call SearchFoldRestore()<CR>
|
490
|
+
Last set from ~/code/fork/vimfiles/plugins/searchfold.vim/plugin/searchfold_0.9.vim
|
491
|
+
n <Plug>SearchFoldInverse * :<C-U>call SearchFold(1)<CR>
|
492
|
+
Last set from ~/code/fork/vimfiles/plugins/searchfold.vim/plugin/searchfold_0.9.vim
|
493
|
+
n <Plug>SearchFoldNormal * :<C-U>call SearchFold(0)<CR>
|
494
|
+
Last set from ~/code/fork/vimfiles/plugins/searchfold.vim/plugin/searchfold_0.9.vim
|
495
|
+
x <BS> "-d
|
496
|
+
v <D-x> "*d
|
497
|
+
v <D-c> "*y
|
498
|
+
v <D-v> "-d"*P
|
499
|
+
n <D-v> "*P
|