tomkersten-vixploder 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. data/History.txt +4 -0
  2. data/Manifest.txt +105 -0
  3. data/PostInstall.txt +21 -0
  4. data/README.rdoc +131 -0
  5. data/Rakefile +21 -0
  6. data/bin/256colors2.pl +63 -0
  7. data/bin/colortest +365 -0
  8. data/bin/vixplode +10 -0
  9. data/lib/dotfiles/aliases +30 -0
  10. data/lib/dotfiles/gvimrc +20 -0
  11. data/lib/dotfiles/vim/.VimballRecord +2 -0
  12. data/lib/dotfiles/vim/after/ftplugin/actionscript_snippets.vim +9 -0
  13. data/lib/dotfiles/vim/after/ftplugin/aspvbs_snippets.vim +17 -0
  14. data/lib/dotfiles/vim/after/ftplugin/c_snippets.vim +58 -0
  15. data/lib/dotfiles/vim/after/ftplugin/css_snippets.vim +30 -0
  16. data/lib/dotfiles/vim/after/ftplugin/django_model_snippets.vim +61 -0
  17. data/lib/dotfiles/vim/after/ftplugin/django_template_snippets.vim +32 -0
  18. data/lib/dotfiles/vim/after/ftplugin/f-script_snippets.vim +14 -0
  19. data/lib/dotfiles/vim/after/ftplugin/haskell_snippets.vim +9 -0
  20. data/lib/dotfiles/vim/after/ftplugin/html_snippets.vim +57 -0
  21. data/lib/dotfiles/vim/after/ftplugin/java_snippets.vim +52 -0
  22. data/lib/dotfiles/vim/after/ftplugin/javascript_snippets.vim +10 -0
  23. data/lib/dotfiles/vim/after/ftplugin/latex_snippets.vim +13 -0
  24. data/lib/dotfiles/vim/after/ftplugin/logo_snippets.vim +9 -0
  25. data/lib/dotfiles/vim/after/ftplugin/markdown_snippets.vim +10 -0
  26. data/lib/dotfiles/vim/after/ftplugin/movable_type_snippets.vim +14 -0
  27. data/lib/dotfiles/vim/after/ftplugin/objc_snippets.vim +53 -0
  28. data/lib/dotfiles/vim/after/ftplugin/ocaml_snippets.vim +26 -0
  29. data/lib/dotfiles/vim/after/ftplugin/perl_snippets.vim +23 -0
  30. data/lib/dotfiles/vim/after/ftplugin/php_snippets.vim +30 -0
  31. data/lib/dotfiles/vim/after/ftplugin/phpdoc_snippets.vim +19 -0
  32. data/lib/dotfiles/vim/after/ftplugin/propel_snippets.vim +14 -0
  33. data/lib/dotfiles/vim/after/ftplugin/python_snippets.vim +202 -0
  34. data/lib/dotfiles/vim/after/ftplugin/rails_snippets.vim +54 -0
  35. data/lib/dotfiles/vim/after/ftplugin/ruby_snippets.vim +32 -0
  36. data/lib/dotfiles/vim/after/ftplugin/sh_snippets.vim +12 -0
  37. data/lib/dotfiles/vim/after/ftplugin/slate_snippets.vim +19 -0
  38. data/lib/dotfiles/vim/after/ftplugin/smarty_snippets.vim +35 -0
  39. data/lib/dotfiles/vim/after/ftplugin/symfony_snippets.vim +21 -0
  40. data/lib/dotfiles/vim/after/ftplugin/tcl_snippets.vim +14 -0
  41. data/lib/dotfiles/vim/after/ftplugin/template_toolkit_snippets.vim +13 -0
  42. data/lib/dotfiles/vim/after/ftplugin/tex_snippets.vim +13 -0
  43. data/lib/dotfiles/vim/after/ftplugin/xhtml_snippets.vim +48 -0
  44. data/lib/dotfiles/vim/autoload/fakeclip.vim +253 -0
  45. data/lib/dotfiles/vim/autoload/rails.vim +4377 -0
  46. data/lib/dotfiles/vim/autoload/rubycomplete.vim +802 -0
  47. data/lib/dotfiles/vim/colors/inkpot.vim +212 -0
  48. data/lib/dotfiles/vim/colors/ir_black.vim +212 -0
  49. data/lib/dotfiles/vim/colors/ir_black_mod.vim +213 -0
  50. data/lib/dotfiles/vim/colors/railscasts.vim +100 -0
  51. data/lib/dotfiles/vim/colors/rubyblue.vim +74 -0
  52. data/lib/dotfiles/vim/colors/twilight.vim +75 -0
  53. data/lib/dotfiles/vim/colors/twilight2.vim +74 -0
  54. data/lib/dotfiles/vim/colors/wombat256.vim +302 -0
  55. data/lib/dotfiles/vim/compiler/eruby.vim +41 -0
  56. data/lib/dotfiles/vim/compiler/ruby.vim +68 -0
  57. data/lib/dotfiles/vim/compiler/rubyunit.vim +35 -0
  58. data/lib/dotfiles/vim/doc/NERD_tree.txt +1235 -0
  59. data/lib/dotfiles/vim/doc/fakeclip.txt +190 -0
  60. data/lib/dotfiles/vim/doc/matchit.txt +406 -0
  61. data/lib/dotfiles/vim/doc/project.txt +710 -0
  62. data/lib/dotfiles/vim/doc/rails.txt +1123 -0
  63. data/lib/dotfiles/vim/doc/snippets_emu.txt +354 -0
  64. data/lib/dotfiles/vim/doc/surround.txt +218 -0
  65. data/lib/dotfiles/vim/doc/tags +433 -0
  66. data/lib/dotfiles/vim/filetype.vim +13 -0
  67. data/lib/dotfiles/vim/ftdetect/gist.vim +3 -0
  68. data/lib/dotfiles/vim/ftdetect/ruby.vim +14 -0
  69. data/lib/dotfiles/vim/ftplugin/eruby.vim +101 -0
  70. data/lib/dotfiles/vim/ftplugin/ruby.vim +230 -0
  71. data/lib/dotfiles/vim/indent/eruby.vim +73 -0
  72. data/lib/dotfiles/vim/indent/ruby.vim +373 -0
  73. data/lib/dotfiles/vim/plugin/NERD_tree.vim +3536 -0
  74. data/lib/dotfiles/vim/plugin/comments.vim +321 -0
  75. data/lib/dotfiles/vim/plugin/fakeclip.vim +174 -0
  76. data/lib/dotfiles/vim/plugin/fuzzyfinder.vim +1676 -0
  77. data/lib/dotfiles/vim/plugin/fuzzyfinder_textmate.vim +150 -0
  78. data/lib/dotfiles/vim/plugin/gist.vim +241 -0
  79. data/lib/dotfiles/vim/plugin/gitdiff.vim +141 -0
  80. data/lib/dotfiles/vim/plugin/matchit.vim +812 -0
  81. data/lib/dotfiles/vim/plugin/mru.vim +787 -0
  82. data/lib/dotfiles/vim/plugin/rails.vim +310 -0
  83. data/lib/dotfiles/vim/plugin/rspec.vim +12 -0
  84. data/lib/dotfiles/vim/plugin/snippets.vim +17 -0
  85. data/lib/dotfiles/vim/plugin/snippetsEmu.vim +973 -0
  86. data/lib/dotfiles/vim/plugin/supertab.vim +531 -0
  87. data/lib/dotfiles/vim/plugin/surround.vim +632 -0
  88. data/lib/dotfiles/vim/ref_vimrc +80 -0
  89. data/lib/dotfiles/vim/ruby/fuzzy_file_finder.rb +353 -0
  90. data/lib/dotfiles/vim/syntax/eruby.vim +85 -0
  91. data/lib/dotfiles/vim/syntax/haml.vim +113 -0
  92. data/lib/dotfiles/vim/syntax/mkd.vim +86 -0
  93. data/lib/dotfiles/vim/syntax/ruby.vim +324 -0
  94. data/lib/dotfiles/vim/syntax/sass.vim +93 -0
  95. data/lib/dotfiles/vimrc +269 -0
  96. data/lib/vixplode/cli.rb +73 -0
  97. data/lib/vixploder.rb +6 -0
  98. data/script/console +10 -0
  99. data/script/destroy +14 -0
  100. data/script/generate +14 -0
  101. data/spec/spec.opts +1 -0
  102. data/spec/spec_helper.rb +10 -0
  103. data/spec/vixplode_cli_spec.rb +15 -0
  104. data/spec/vixploder_spec.rb +7 -0
  105. data/tasks/rspec.rake +21 -0
  106. metadata +202 -8
@@ -0,0 +1,433 @@
1
+ 'NERDChristmasTree' NERD_tree.txt /*'NERDChristmasTree'*
2
+ 'NERDTreeAutoCenter' NERD_tree.txt /*'NERDTreeAutoCenter'*
3
+ 'NERDTreeAutoCenterThreshold' NERD_tree.txt /*'NERDTreeAutoCenterThreshold'*
4
+ 'NERDTreeBookmarksFile' NERD_tree.txt /*'NERDTreeBookmarksFile'*
5
+ 'NERDTreeCaseSensitiveSort' NERD_tree.txt /*'NERDTreeCaseSensitiveSort'*
6
+ 'NERDTreeChDirMode' NERD_tree.txt /*'NERDTreeChDirMode'*
7
+ 'NERDTreeHighlightCursorline' NERD_tree.txt /*'NERDTreeHighlightCursorline'*
8
+ 'NERDTreeIgnore' NERD_tree.txt /*'NERDTreeIgnore'*
9
+ 'NERDTreeMouseMode' NERD_tree.txt /*'NERDTreeMouseMode'*
10
+ 'NERDTreeQuitOnOpen' NERD_tree.txt /*'NERDTreeQuitOnOpen'*
11
+ 'NERDTreeShowBookmarks' NERD_tree.txt /*'NERDTreeShowBookmarks'*
12
+ 'NERDTreeShowFiles' NERD_tree.txt /*'NERDTreeShowFiles'*
13
+ 'NERDTreeShowHidden' NERD_tree.txt /*'NERDTreeShowHidden'*
14
+ 'NERDTreeShowLineNumbers' NERD_tree.txt /*'NERDTreeShowLineNumbers'*
15
+ 'NERDTreeSortOrder' NERD_tree.txt /*'NERDTreeSortOrder'*
16
+ 'NERDTreeWinPos' NERD_tree.txt /*'NERDTreeWinPos'*
17
+ 'NERDTreeWinSize' NERD_tree.txt /*'NERDTreeWinSize'*
18
+ 'loaded_nerd_tree' NERD_tree.txt /*'loaded_nerd_tree'*
19
+ :MatchDebug matchit.txt /*:MatchDebug*
20
+ :NERDTree NERD_tree.txt /*:NERDTree*
21
+ :NERDTreeFromBookmark NERD_tree.txt /*:NERDTreeFromBookmark*
22
+ :NERDTreeToggle NERD_tree.txt /*:NERDTreeToggle*
23
+ :Snippet snippets_emu.txt /*:Snippet*
24
+ CreateBundleSnippet snippets_emu.txt /*CreateBundleSnippet*
25
+ CreateSnippet snippets_emu.txt /*CreateSnippet*
26
+ MatchError matchit.txt /*MatchError*
27
+ NERDTree NERD_tree.txt /*NERDTree*
28
+ NERDTree-! NERD_tree.txt /*NERDTree-!*
29
+ NERDTree-? NERD_tree.txt /*NERDTree-?*
30
+ NERDTree-B NERD_tree.txt /*NERDTree-B*
31
+ NERDTree-C NERD_tree.txt /*NERDTree-C*
32
+ NERDTree-D NERD_tree.txt /*NERDTree-D*
33
+ NERDTree-F NERD_tree.txt /*NERDTree-F*
34
+ NERDTree-H NERD_tree.txt /*NERDTree-H*
35
+ NERDTree-J NERD_tree.txt /*NERDTree-J*
36
+ NERDTree-K NERD_tree.txt /*NERDTree-K*
37
+ NERDTree-O NERD_tree.txt /*NERDTree-O*
38
+ NERDTree-P NERD_tree.txt /*NERDTree-P*
39
+ NERDTree-R NERD_tree.txt /*NERDTree-R*
40
+ NERDTree-T NERD_tree.txt /*NERDTree-T*
41
+ NERDTree-U NERD_tree.txt /*NERDTree-U*
42
+ NERDTree-X NERD_tree.txt /*NERDTree-X*
43
+ NERDTree-c-j NERD_tree.txt /*NERDTree-c-j*
44
+ NERDTree-c-k NERD_tree.txt /*NERDTree-c-k*
45
+ NERDTree-contents NERD_tree.txt /*NERDTree-contents*
46
+ NERDTree-e NERD_tree.txt /*NERDTree-e*
47
+ NERDTree-f NERD_tree.txt /*NERDTree-f*
48
+ NERDTree-go NERD_tree.txt /*NERDTree-go*
49
+ NERDTree-gtab NERD_tree.txt /*NERDTree-gtab*
50
+ NERDTree-m NERD_tree.txt /*NERDTree-m*
51
+ NERDTree-o NERD_tree.txt /*NERDTree-o*
52
+ NERDTree-p NERD_tree.txt /*NERDTree-p*
53
+ NERDTree-q NERD_tree.txt /*NERDTree-q*
54
+ NERDTree-r NERD_tree.txt /*NERDTree-r*
55
+ NERDTree-t NERD_tree.txt /*NERDTree-t*
56
+ NERDTree-tab NERD_tree.txt /*NERDTree-tab*
57
+ NERDTree-u NERD_tree.txt /*NERDTree-u*
58
+ NERDTree-x NERD_tree.txt /*NERDTree-x*
59
+ NERDTreeAuthor NERD_tree.txt /*NERDTreeAuthor*
60
+ NERDTreeBookmarkCommands NERD_tree.txt /*NERDTreeBookmarkCommands*
61
+ NERDTreeBookmarkTable NERD_tree.txt /*NERDTreeBookmarkTable*
62
+ NERDTreeBookmarks NERD_tree.txt /*NERDTreeBookmarks*
63
+ NERDTreeChangelog NERD_tree.txt /*NERDTreeChangelog*
64
+ NERDTreeCredits NERD_tree.txt /*NERDTreeCredits*
65
+ NERDTreeFilesysMenu NERD_tree.txt /*NERDTreeFilesysMenu*
66
+ NERDTreeFunctionality NERD_tree.txt /*NERDTreeFunctionality*
67
+ NERDTreeGlobalCommands NERD_tree.txt /*NERDTreeGlobalCommands*
68
+ NERDTreeInvalidBookmarks NERD_tree.txt /*NERDTreeInvalidBookmarks*
69
+ NERDTreeLicense NERD_tree.txt /*NERDTreeLicense*
70
+ NERDTreeMappings NERD_tree.txt /*NERDTreeMappings*
71
+ NERDTreeOptionDetails NERD_tree.txt /*NERDTreeOptionDetails*
72
+ NERDTreeOptionSummary NERD_tree.txt /*NERDTreeOptionSummary*
73
+ NERDTreeOptions NERD_tree.txt /*NERDTreeOptions*
74
+ NERDTreePublicFunctions NERD_tree.txt /*NERDTreePublicFunctions*
75
+ NERDTreeTodo NERD_tree.txt /*NERDTreeTodo*
76
+ NERD_tree.txt NERD_tree.txt /*NERD_tree.txt*
77
+ Utl-chgOverview utl_usr.txt /*Utl-chgOverview*
78
+ [% matchit.txt /*[%*
79
+ ]% matchit.txt /*]%*
80
+ b:match_col matchit.txt /*b:match_col*
81
+ b:match_debug matchit.txt /*b:match_debug*
82
+ b:match_ignorecase matchit.txt /*b:match_ignorecase*
83
+ b:match_ini matchit.txt /*b:match_ini*
84
+ b:match_iniBR matchit.txt /*b:match_iniBR*
85
+ b:match_match matchit.txt /*b:match_match*
86
+ b:match_pat matchit.txt /*b:match_pat*
87
+ b:match_skip matchit.txt /*b:match_skip*
88
+ b:match_table matchit.txt /*b:match_table*
89
+ b:match_tail matchit.txt /*b:match_tail*
90
+ b:match_wholeBR matchit.txt /*b:match_wholeBR*
91
+ b:match_word matchit.txt /*b:match_word*
92
+ b:match_words matchit.txt /*b:match_words*
93
+ basic-snippet snippets_emu.txt /*basic-snippet*
94
+ config/rails.vim rails.txt /*config\/rails.vim*
95
+ creating-snippets snippets_emu.txt /*creating-snippets*
96
+ cs surround.txt /*cs*
97
+ ds surround.txt /*ds*
98
+ g% matchit.txt /*g%*
99
+ g:loaded_rails rails.txt /*g:loaded_rails*
100
+ g:rails_abbreviations rails.txt /*g:rails_abbreviations*
101
+ g:rails_dbext rails.txt /*g:rails_dbext*
102
+ g:rails_default_database rails.txt /*g:rails_default_database*
103
+ g:rails_default_file rails.txt /*g:rails_default_file*
104
+ g:rails_expensive rails.txt /*g:rails_expensive*
105
+ g:rails_gnu_screen rails.txt /*g:rails_gnu_screen*
106
+ g:rails_history_size rails.txt /*g:rails_history_size*
107
+ g:rails_mappings rails.txt /*g:rails_mappings*
108
+ g:rails_menu rails.txt /*g:rails_menu*
109
+ g:rails_modelines rails.txt /*g:rails_modelines*
110
+ g:rails_statusline rails.txt /*g:rails_statusline*
111
+ g:rails_subversion rails.txt /*g:rails_subversion*
112
+ g:rails_syntax rails.txt /*g:rails_syntax*
113
+ g:rails_tabstop rails.txt /*g:rails_tabstop*
114
+ g:rails_url rails.txt /*g:rails_url*
115
+ i_CTRL-G_S surround.txt /*i_CTRL-G_S*
116
+ i_CTRL-G_s surround.txt /*i_CTRL-G_s*
117
+ macros/rails.vim rails.txt /*macros\/rails.vim*
118
+ matchit matchit.txt /*matchit*
119
+ matchit-% matchit.txt /*matchit-%*
120
+ matchit-\1 matchit.txt /*matchit-\\1*
121
+ matchit-activate matchit.txt /*matchit-activate*
122
+ matchit-backref matchit.txt /*matchit-backref*
123
+ matchit-bugs matchit.txt /*matchit-bugs*
124
+ matchit-choose matchit.txt /*matchit-choose*
125
+ matchit-configure matchit.txt /*matchit-configure*
126
+ matchit-debug matchit.txt /*matchit-debug*
127
+ matchit-details matchit.txt /*matchit-details*
128
+ matchit-highlight matchit.txt /*matchit-highlight*
129
+ matchit-hl matchit.txt /*matchit-hl*
130
+ matchit-intro matchit.txt /*matchit-intro*
131
+ matchit-languages matchit.txt /*matchit-languages*
132
+ matchit-modes matchit.txt /*matchit-modes*
133
+ matchit-newlang matchit.txt /*matchit-newlang*
134
+ matchit-o_% matchit.txt /*matchit-o_%*
135
+ matchit-parse matchit.txt /*matchit-parse*
136
+ matchit-s:notend matchit.txt /*matchit-s:notend*
137
+ matchit-s:sol matchit.txt /*matchit-s:sol*
138
+ matchit-spaces matchit.txt /*matchit-spaces*
139
+ matchit-troubleshoot matchit.txt /*matchit-troubleshoot*
140
+ matchit-v_% matchit.txt /*matchit-v_%*
141
+ matchit.txt matchit.txt /*matchit.txt*
142
+ matchit.vim matchit.txt /*matchit.vim*
143
+ named-tags snippets_emu.txt /*named-tags*
144
+ o_[% matchit.txt /*o_[%*
145
+ o_]% matchit.txt /*o_]%*
146
+ o_g% matchit.txt /*o_g%*
147
+ project project.txt /*project*
148
+ project-adding-mappings project.txt /*project-adding-mappings*
149
+ project-example project.txt /*project-example*
150
+ project-flags project.txt /*project-flags*
151
+ project-inheritance project.txt /*project-inheritance*
152
+ project-invoking project.txt /*project-invoking*
153
+ project-mappings project.txt /*project-mappings*
154
+ project-plugin project.txt /*project-plugin*
155
+ project-settings project.txt /*project-settings*
156
+ project-syntax project.txt /*project-syntax*
157
+ project-tips project.txt /*project-tips*
158
+ project.txt project.txt /*project.txt*
159
+ rails rails.txt /*rails*
160
+ rails-'cfu' rails.txt /*rails-'cfu'*
161
+ rails-'completefunc' rails.txt /*rails-'completefunc'*
162
+ rails-'efm' rails.txt /*rails-'efm'*
163
+ rails-'errorformat' rails.txt /*rails-'errorformat'*
164
+ rails-'et' rails.txt /*rails-'et'*
165
+ rails-'expandtab' rails.txt /*rails-'expandtab'*
166
+ rails-'filetype' rails.txt /*rails-'filetype'*
167
+ rails-'ft' rails.txt /*rails-'ft'*
168
+ rails-'includeexpr' rails.txt /*rails-'includeexpr'*
169
+ rails-'inex' rails.txt /*rails-'inex'*
170
+ rails-'makeprg' rails.txt /*rails-'makeprg'*
171
+ rails-'mp' rails.txt /*rails-'mp'*
172
+ rails-'pa' rails.txt /*rails-'pa'*
173
+ rails-'path' rails.txt /*rails-'path'*
174
+ rails-'shiftwidth' rails.txt /*rails-'shiftwidth'*
175
+ rails-'softtabstop' rails.txt /*rails-'softtabstop'*
176
+ rails-'statusline' rails.txt /*rails-'statusline'*
177
+ rails-'stl' rails.txt /*rails-'stl'*
178
+ rails-'sts' rails.txt /*rails-'sts'*
179
+ rails-'sua' rails.txt /*rails-'sua'*
180
+ rails-'suffixesadd' rails.txt /*rails-'suffixesadd'*
181
+ rails-'sw' rails.txt /*rails-'sw'*
182
+ rails-:A rails.txt /*rails-:A*
183
+ rails-:AE rails.txt /*rails-:AE*
184
+ rails-:AS rails.txt /*rails-:AS*
185
+ rails-:AT rails.txt /*rails-:AT*
186
+ rails-:AV rails.txt /*rails-:AV*
187
+ rails-:OpenURL rails.txt /*rails-:OpenURL*
188
+ rails-:R rails.txt /*rails-:R*
189
+ rails-:RE rails.txt /*rails-:RE*
190
+ rails-:RS rails.txt /*rails-:RS*
191
+ rails-:RT rails.txt /*rails-:RT*
192
+ rails-:RV rails.txt /*rails-:RV*
193
+ rails-:Rabbrev rails.txt /*rails-:Rabbrev*
194
+ rails-:Rabbrev! rails.txt /*rails-:Rabbrev!*
195
+ rails-:Rails rails.txt /*rails-:Rails*
196
+ rails-:Rake rails.txt /*rails-:Rake*
197
+ rails-:Rake! rails.txt /*rails-:Rake!*
198
+ rails-:Rapi rails.txt /*rails-:Rapi*
199
+ rails-:Rcd rails.txt /*rails-:Rcd*
200
+ rails-:Rcommand rails.txt /*rails-:Rcommand*
201
+ rails-:Rconsole rails.txt /*rails-:Rconsole*
202
+ rails-:Rcontroller rails.txt /*rails-:Rcontroller*
203
+ rails-:Rdbext rails.txt /*rails-:Rdbext*
204
+ rails-:Rdbext! rails.txt /*rails-:Rdbext!*
205
+ rails-:Rdestroy rails.txt /*rails-:Rdestroy*
206
+ rails-:Rdoc rails.txt /*rails-:Rdoc*
207
+ rails-:Rdoc! rails.txt /*rails-:Rdoc!*
208
+ rails-:Redit rails.txt /*rails-:Redit*
209
+ rails-:Rextract rails.txt /*rails-:Rextract*
210
+ rails-:Rfind rails.txt /*rails-:Rfind*
211
+ rails-:Rfixtures rails.txt /*rails-:Rfixtures*
212
+ rails-:Rfunctionaltest rails.txt /*rails-:Rfunctionaltest*
213
+ rails-:Rgenerate rails.txt /*rails-:Rgenerate*
214
+ rails-:Rhelper rails.txt /*rails-:Rhelper*
215
+ rails-:Rintegrationtest rails.txt /*rails-:Rintegrationtest*
216
+ rails-:Rinvert rails.txt /*rails-:Rinvert*
217
+ rails-:Rjavascript rails.txt /*rails-:Rjavascript*
218
+ rails-:Rlayout rails.txt /*rails-:Rlayout*
219
+ rails-:Rlcd rails.txt /*rails-:Rlcd*
220
+ rails-:Rlib rails.txt /*rails-:Rlib*
221
+ rails-:Rlog rails.txt /*rails-:Rlog*
222
+ rails-:Rmigration rails.txt /*rails-:Rmigration*
223
+ rails-:Rmodel rails.txt /*rails-:Rmodel*
224
+ rails-:Robserver rails.txt /*rails-:Robserver*
225
+ rails-:Rp rails.txt /*rails-:Rp*
226
+ rails-:Rpartial rails.txt /*rails-:Rpartial*
227
+ rails-:Rplugin rails.txt /*rails-:Rplugin*
228
+ rails-:Rpp rails.txt /*rails-:Rpp*
229
+ rails-:Rpreview rails.txt /*rails-:Rpreview*
230
+ rails-:Rpreview! rails.txt /*rails-:Rpreview!*
231
+ rails-:Rproject rails.txt /*rails-:Rproject*
232
+ rails-:Rproject! rails.txt /*rails-:Rproject!*
233
+ rails-:Rrefresh rails.txt /*rails-:Rrefresh*
234
+ rails-:Rrefresh! rails.txt /*rails-:Rrefresh!*
235
+ rails-:Rrunner rails.txt /*rails-:Rrunner*
236
+ rails-:Rscript rails.txt /*rails-:Rscript*
237
+ rails-:Rserver rails.txt /*rails-:Rserver*
238
+ rails-:Rserver! rails.txt /*rails-:Rserver!*
239
+ rails-:Rset rails.txt /*rails-:Rset*
240
+ rails-:Rstylesheet rails.txt /*rails-:Rstylesheet*
241
+ rails-:Rtags rails.txt /*rails-:Rtags*
242
+ rails-:Rtask rails.txt /*rails-:Rtask*
243
+ rails-:Runittest rails.txt /*rails-:Runittest*
244
+ rails-:Rview rails.txt /*rails-:Rview*
245
+ rails-:Ry rails.txt /*rails-:Ry*
246
+ rails-:autocmd rails.txt /*rails-:autocmd*
247
+ rails-@params rails.txt /*rails-@params*
248
+ rails-abbreviations rails.txt /*rails-abbreviations*
249
+ rails-about rails.txt /*rails-about*
250
+ rails-alternate rails.txt /*rails-alternate*
251
+ rails-alternate-related rails.txt /*rails-alternate-related*
252
+ rails-autocommands rails.txt /*rails-autocommands*
253
+ rails-commands rails.txt /*rails-commands*
254
+ rails-configuration rails.txt /*rails-configuration*
255
+ rails-controller-navigation rails.txt /*rails-controller-navigation*
256
+ rails-cream rails.txt /*rails-cream*
257
+ rails-custom-navigation rails.txt /*rails-custom-navigation*
258
+ rails-dbext rails.txt /*rails-dbext*
259
+ rails-gf rails.txt /*rails-gf*
260
+ rails-global-settings rails.txt /*rails-global-settings*
261
+ rails-install-plugin rails.txt /*rails-install-plugin*
262
+ rails-install-vim rails.txt /*rails-install-vim*
263
+ rails-installation rails.txt /*rails-installation*
264
+ rails-integration rails.txt /*rails-integration*
265
+ rails-introduction rails.txt /*rails-introduction*
266
+ rails-license rails.txt /*rails-license*
267
+ rails-menu rails.txt /*rails-menu*
268
+ rails-migrations rails.txt /*rails-migrations*
269
+ rails-misc-navigation rails.txt /*rails-misc-navigation*
270
+ rails-model-navigation rails.txt /*rails-model-navigation*
271
+ rails-modelines rails.txt /*rails-modelines*
272
+ rails-navigation rails.txt /*rails-navigation*
273
+ rails-options rails.txt /*rails-options*
274
+ rails-partials rails.txt /*rails-partials*
275
+ rails-plugin-author rails.txt /*rails-plugin-author*
276
+ rails-project rails.txt /*rails-project*
277
+ rails-rails-integration rails.txt /*rails-rails-integration*
278
+ rails-refactoring rails.txt /*rails-refactoring*
279
+ rails-related rails.txt /*rails-related*
280
+ rails-rspec rails.txt /*rails-rspec*
281
+ rails-screen rails.txt /*rails-screen*
282
+ rails-scripts rails.txt /*rails-scripts*
283
+ rails-slow rails.txt /*rails-slow*
284
+ rails-snippets rails.txt /*rails-snippets*
285
+ rails-surround rails.txt /*rails-surround*
286
+ rails-syntax rails.txt /*rails-syntax*
287
+ rails-syntax-assertions rails.txt /*rails-syntax-assertions*
288
+ rails-syntax-classes rails.txt /*rails-syntax-classes*
289
+ rails-syntax-deprecated rails.txt /*rails-syntax-deprecated*
290
+ rails-syntax-keywords rails.txt /*rails-syntax-keywords*
291
+ rails-syntax-strings rails.txt /*rails-syntax-strings*
292
+ rails-syntax-yaml rails.txt /*rails-syntax-yaml*
293
+ rails-tabs rails.txt /*rails-tabs*
294
+ rails-template-types rails.txt /*rails-template-types*
295
+ rails-vim-integration rails.txt /*rails-vim-integration*
296
+ rails.txt rails.txt /*rails.txt*
297
+ snip-advanced-tag-commands snippets_emu.txt /*snip-advanced-tag-commands*
298
+ snip-buffer-specific snippets_emu.txt /*snip-buffer-specific*
299
+ snip-bundles snippets_emu.txt /*snip-bundles*
300
+ snip-contact-details snippets_emu.txt /*snip-contact-details*
301
+ snip-contributors snippets_emu.txt /*snip-contributors*
302
+ snip-detailed-explanations snippets_emu.txt /*snip-detailed-explanations*
303
+ snip-elem-delimiter snippets_emu.txt /*snip-elem-delimiter*
304
+ snip-ftplugin snippets_emu.txt /*snip-ftplugin*
305
+ snip-limitations snippets_emu.txt /*snip-limitations*
306
+ snip-menu snippets_emu.txt /*snip-menu*
307
+ snip-remap-key snippets_emu.txt /*snip-remap-key*
308
+ snip-snippet-commands snippets_emu.txt /*snip-snippet-commands*
309
+ snip-special-vars snippets_emu.txt /*snip-special-vars*
310
+ snip-start-end-tags snippets_emu.txt /*snip-start-end-tags*
311
+ snip-tag-name-syntax snippets_emu.txt /*snip-tag-name-syntax*
312
+ snippet-commands snippets_emu.txt /*snippet-commands*
313
+ snippets_emu-bugs snippets_emu.txt /*snippets_emu-bugs*
314
+ snippets_emu-features snippets_emu.txt /*snippets_emu-features*
315
+ snippets_emu-options snippets_emu.txt /*snippets_emu-options*
316
+ snippets_emu-troubleshooting snippets_emu.txt /*snippets_emu-troubleshooting*
317
+ snippets_emu.txt snippets_emu.txt /*snippets_emu.txt*
318
+ surround surround.txt /*surround*
319
+ surround-author surround.txt /*surround-author*
320
+ surround-customizing surround.txt /*surround-customizing*
321
+ surround-issues surround.txt /*surround-issues*
322
+ surround-mappings surround.txt /*surround-mappings*
323
+ surround-replacements surround.txt /*surround-replacements*
324
+ surround-targets surround.txt /*surround-targets*
325
+ surround.txt surround.txt /*surround.txt*
326
+ utl utl_usr.txt /*utl*
327
+ utl-absDontCombine utl_usr.txt /*utl-absDontCombine*
328
+ utl-btSample utl_usr.txt /*utl-btSample*
329
+ utl-changes utl_usr.txt /*utl-changes*
330
+ utl-chgAddFootRefs utl_usr.txt /*utl-chgAddFootRefs*
331
+ utl-chgCacheGone utl_usr.txt /*utl-chgCacheGone*
332
+ utl-chgFragAW utl_usr.txt /*utl-chgFragAW*
333
+ utl-chgGuGone utl_usr.txt /*utl-chgGuGone*
334
+ utl-chgLineNegative utl_usr.txt /*utl-chgLineNegative*
335
+ utl-chgNetworkFile utl_usr.txt /*utl-chgNetworkFile*
336
+ utl-chgNewFragConv utl_usr.txt /*utl-chgNewFragConv*
337
+ utl-chgNewGenMTHdl utl_usr.txt /*utl-chgNewGenMTHdl*
338
+ utl-chgNewHttpAccess utl_usr.txt /*utl-chgNewHttpAccess*
339
+ utl-chgNewMailScheme utl_usr.txt /*utl-chgNewMailScheme*
340
+ utl-chgNewOperand utl_usr.txt /*utl-chgNewOperand*
341
+ utl-chgNewOperators utl_usr.txt /*utl-chgNewOperators*
342
+ utl-chgNewVerbose utl_usr.txt /*utl-chgNewVerbose*
343
+ utl-chgScmIf utl_usr.txt /*utl-chgScmIf*
344
+ utl-chgUI utl_usr.txt /*utl-chgUI*
345
+ utl-chgVarNames utl_usr.txt /*utl-chgVarNames*
346
+ utl-chgadded utl_usr.txt /*utl-chgadded*
347
+ utl-chgchanged utl_usr.txt /*utl-chgchanged*
348
+ utl-chghighl utl_usr.txt /*utl-chghighl*
349
+ utl-chgincompat utl_usr.txt /*utl-chgincompat*
350
+ utl-config utl_usr.txt /*utl-config*
351
+ utl-configIntExt utl_usr.txt /*utl-configIntExt*
352
+ utl-configcfg utl_usr.txt /*utl-configcfg*
353
+ utl-configopt utl_usr.txt /*utl-configopt*
354
+ utl-createFiles utl_usr.txt /*utl-createFiles*
355
+ utl-credits utl_usr.txt /*utl-credits*
356
+ utl-displayHtml utl_usr.txt /*utl-displayHtml*
357
+ utl-efmeddep utl_usr.txt /*utl-efmeddep*
358
+ utl-fbcallmt utl_usr.txt /*utl-fbcallmt*
359
+ utl-fixed utl_usr.txt /*utl-fixed*
360
+ utl-fixedBackForth utl_usr.txt /*utl-fixedBackForth*
361
+ utl-getStarted utl_usr.txt /*utl-getStarted*
362
+ utl-hotKey utl_usr.txt /*utl-hotKey*
363
+ utl-infoDir utl_usr.txt /*utl-infoDir*
364
+ utl-intro utl_usr.txt /*utl-intro*
365
+ utl-knownbugs utl_usr.txt /*utl-knownbugs*
366
+ utl-lookupWord utl_usr.txt /*utl-lookupWord*
367
+ utl-multiLineURLs utl_usr.txt /*utl-multiLineURLs*
368
+ utl-opt_hlighturls utl_usr.txt /*utl-opt_hlighturls*
369
+ utl-opt_verbose utl_usr.txt /*utl-opt_verbose*
370
+ utl-plugin utl_usr.txt /*utl-plugin*
371
+ utl-privateScmHdl utl_usr.txt /*utl-privateScmHdl*
372
+ utl-projectManagement utl_usr.txt /*utl-projectManagement*
373
+ utl-protvsftype utl_usr.txt /*utl-protvsftype*
374
+ utl-smartSamples utl_usr.txt /*utl-smartSamples*
375
+ utl-start utl_usr.txt /*utl-start*
376
+ utl-startprog utl_usr.txt /*utl-startprog*
377
+ utl-tildeSupport utl_usr.txt /*utl-tildeSupport*
378
+ utl-tipsdetails utl_usr.txt /*utl-tipsdetails*
379
+ utl-todo utl_usr.txt /*utl-todo*
380
+ utl-tutCopyFileName utl_usr.txt /*utl-tutCopyFileName*
381
+ utl-tutCopyLink utl_usr.txt /*utl-tutCopyLink*
382
+ utl-tutOtherCmds utl_usr.txt /*utl-tutOtherCmds*
383
+ utl-tutUI utl_usr.txt /*utl-tutUI*
384
+ utl-tutVimscript utl_usr.txt /*utl-tutVimscript*
385
+ utl-tutVisUrls utl_usr.txt /*utl-tutVisUrls*
386
+ utl-tutcreateurls utl_usr.txt /*utl-tutcreateurls*
387
+ utl-tutdrivesshares utl_usr.txt /*utl-tutdrivesshares*
388
+ utl-tutextfrag utl_usr.txt /*utl-tutextfrag*
389
+ utl-tutfolders utl_usr.txt /*utl-tutfolders*
390
+ utl-tutfoot utl_usr.txt /*utl-tutfoot*
391
+ utl-tutfootfrag utl_usr.txt /*utl-tutfootfrag*
392
+ utl-tutfooturl utl_usr.txt /*utl-tutfooturl*
393
+ utl-tutforthback utl_usr.txt /*utl-tutforthback*
394
+ utl-tutfrags utl_usr.txt /*utl-tutfrags*
395
+ utl-tutfragsdref utl_usr.txt /*utl-tutfragsdref*
396
+ utl-tutfragsintro utl_usr.txt /*utl-tutfragsintro*
397
+ utl-tutfragsline utl_usr.txt /*utl-tutfragsline*
398
+ utl-tutfragsnonfile utl_usr.txt /*utl-tutfragsnonfile*
399
+ utl-tutfragsrel utl_usr.txt /*utl-tutfragsrel*
400
+ utl-tutfragsyn utl_usr.txt /*utl-tutfragsyn*
401
+ utl-tutmisc utl_usr.txt /*utl-tutmisc*
402
+ utl-tutmtypes utl_usr.txt /*utl-tutmtypes*
403
+ utl-tutorial utl_usr.txt /*utl-tutorial*
404
+ utl-tutpdffrag utl_usr.txt /*utl-tutpdffrag*
405
+ utl-tutrelabs utl_usr.txt /*utl-tutrelabs*
406
+ utl-tutscmhttp utl_usr.txt /*utl-tutscmhttp*
407
+ utl-tutscmhttpwget utl_usr.txt /*utl-tutscmhttpwget*
408
+ utl-tutscmmail utl_usr.txt /*utl-tutscmmail*
409
+ utl-tutscmoth utl_usr.txt /*utl-tutscmoth*
410
+ utl-tutscmothnonstd utl_usr.txt /*utl-tutscmothnonstd*
411
+ utl-tutscmothstd utl_usr.txt /*utl-tutscmothstd*
412
+ utl-tuttypeurl utl_usr.txt /*utl-tuttypeurl*
413
+ utl-tutverbosemode utl_usr.txt /*utl-tutverbosemode*
414
+ utl-tutwordfrag utl_usr.txt /*utl-tutwordfrag*
415
+ utl-usagePatterns utl_usr.txt /*utl-usagePatterns*
416
+ utl-useOrganizeIdeas utl_usr.txt /*utl-useOrganizeIdeas*
417
+ utl-useSourceCode utl_usr.txt /*utl-useSourceCode*
418
+ utl-usedesktop utl_usr.txt /*utl-usedesktop*
419
+ utl-vimsBackup utl_usr.txt /*utl-vimsBackup*
420
+ utl-vimsCompile utl_usr.txt /*utl-vimsCompile*
421
+ utl-vimsHeuristicUrl utl_usr.txt /*utl-vimsHeuristicUrl*
422
+ utl-writeUrls utl_usr.txt /*utl-writeUrls*
423
+ utl_chgcfgscm utl_usr.txt /*utl_chgcfgscm*
424
+ utl_usr.txt utl_usr.txt /*utl_usr.txt*
425
+ v_[% matchit.txt /*v_[%*
426
+ v_]% matchit.txt /*v_]%*
427
+ v_a% matchit.txt /*v_a%*
428
+ v_g% matchit.txt /*v_g%*
429
+ vs surround.txt /*vs*
430
+ yS surround.txt /*yS*
431
+ ySS surround.txt /*ySS*
432
+ ys surround.txt /*ys*
433
+ yss surround.txt /*yss*
@@ -0,0 +1,13 @@
1
+ au! BufRead,BufNewFile *.haml setfiletype haml
2
+ au! BufRead,BufNewFile *.sass setfiletype sass
3
+ "au BufAdd,BufNewFile * nested tab sball
4
+
5
+
6
+ " markdown filetype file
7
+ if exists("did\_load\_filetypes")
8
+ finish
9
+ endif
10
+ augroup markdown
11
+ au! BufRead,BufNewFile *.mkd setfiletype mkd
12
+ au! BufRead,BufNewFile *.markdown setfiletype mkd
13
+ augroup END
@@ -0,0 +1,3 @@
1
+ " A 'gist' file (downloaded with the ':Gist <gist id>' command will be
2
+ " set to ruby by default...
3
+ au BufNewFile,BufRead gist* set filetype=ruby