rouge 1.5.0 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rouge.rb +3 -0
  3. data/lib/rouge/cli.rb +2 -0
  4. data/lib/rouge/formatter.rb +2 -0
  5. data/lib/rouge/formatters/html.rb +2 -0
  6. data/lib/rouge/formatters/null.rb +2 -0
  7. data/lib/rouge/formatters/terminal256.rb +2 -0
  8. data/lib/rouge/lexer.rb +4 -1
  9. data/lib/rouge/lexers/apple_script.rb +1 -1
  10. data/lib/rouge/lexers/c.rb +2 -0
  11. data/lib/rouge/lexers/clojure.rb +2 -0
  12. data/lib/rouge/lexers/coffeescript.rb +2 -0
  13. data/lib/rouge/lexers/common_lisp.rb +1 -2
  14. data/lib/rouge/lexers/conf.rb +2 -0
  15. data/lib/rouge/lexers/cpp.rb +2 -0
  16. data/lib/rouge/lexers/csharp.rb +2 -0
  17. data/lib/rouge/lexers/css.rb +2 -0
  18. data/lib/rouge/lexers/diff.rb +2 -0
  19. data/lib/rouge/lexers/elixir.rb +2 -0
  20. data/lib/rouge/lexers/erb.rb +2 -0
  21. data/lib/rouge/lexers/erlang.rb +2 -0
  22. data/lib/rouge/lexers/factor.rb +2 -0
  23. data/lib/rouge/lexers/gherkin/keywords.rb +4 -4
  24. data/lib/rouge/lexers/go.rb +2 -0
  25. data/lib/rouge/lexers/groovy.rb +2 -0
  26. data/lib/rouge/lexers/haml.rb +2 -0
  27. data/lib/rouge/lexers/handlebars.rb +2 -0
  28. data/lib/rouge/lexers/haskell.rb +2 -0
  29. data/lib/rouge/lexers/html.rb +2 -0
  30. data/lib/rouge/lexers/http.rb +2 -0
  31. data/lib/rouge/lexers/ini.rb +2 -0
  32. data/lib/rouge/lexers/io.rb +2 -0
  33. data/lib/rouge/lexers/java.rb +2 -0
  34. data/lib/rouge/lexers/javascript.rb +2 -0
  35. data/lib/rouge/lexers/literate_coffeescript.rb +2 -0
  36. data/lib/rouge/lexers/literate_haskell.rb +2 -0
  37. data/lib/rouge/lexers/llvm.rb +2 -0
  38. data/lib/rouge/lexers/lua/builtins.rb +2 -1
  39. data/lib/rouge/lexers/make.rb +2 -0
  40. data/lib/rouge/lexers/markdown.rb +2 -0
  41. data/lib/rouge/lexers/matlab.rb +2 -0
  42. data/lib/rouge/lexers/matlab/builtins.rb +2 -1
  43. data/lib/rouge/lexers/nginx.rb +2 -0
  44. data/lib/rouge/lexers/objective_c.rb +2 -0
  45. data/lib/rouge/lexers/ocaml.rb +2 -0
  46. data/lib/rouge/lexers/perl.rb +2 -0
  47. data/lib/rouge/lexers/php.rb +2 -0
  48. data/lib/rouge/lexers/php/builtins.rb +9 -7
  49. data/lib/rouge/lexers/plain_text.rb +2 -0
  50. data/lib/rouge/lexers/prolog.rb +2 -0
  51. data/lib/rouge/lexers/properties.rb +2 -0
  52. data/lib/rouge/lexers/puppet.rb +2 -0
  53. data/lib/rouge/lexers/python.rb +2 -0
  54. data/lib/rouge/lexers/qml.rb +3 -1
  55. data/lib/rouge/lexers/r.rb +2 -0
  56. data/lib/rouge/lexers/racket.rb +1 -1
  57. data/lib/rouge/lexers/ruby.rb +66 -34
  58. data/lib/rouge/lexers/rust.rb +4 -0
  59. data/lib/rouge/lexers/sass.rb +2 -0
  60. data/lib/rouge/lexers/sass/common.rb +2 -0
  61. data/lib/rouge/lexers/scheme.rb +2 -0
  62. data/lib/rouge/lexers/scss.rb +2 -0
  63. data/lib/rouge/lexers/sed.rb +2 -0
  64. data/lib/rouge/lexers/shell.rb +2 -0
  65. data/lib/rouge/lexers/smalltalk.rb +2 -0
  66. data/lib/rouge/lexers/sml.rb +2 -0
  67. data/lib/rouge/lexers/sql.rb +2 -0
  68. data/lib/rouge/lexers/swift.rb +1 -1
  69. data/lib/rouge/lexers/tcl.rb +2 -0
  70. data/lib/rouge/lexers/tex.rb +2 -0
  71. data/lib/rouge/lexers/toml.rb +2 -0
  72. data/lib/rouge/lexers/vb.rb +2 -0
  73. data/lib/rouge/lexers/viml.rb +2 -0
  74. data/lib/rouge/lexers/viml/keywords.rb +3 -2
  75. data/lib/rouge/lexers/xml.rb +2 -0
  76. data/lib/rouge/lexers/yaml.rb +2 -0
  77. data/lib/rouge/plugins/redcarpet.rb +2 -0
  78. data/lib/rouge/regex_lexer.rb +2 -0
  79. data/lib/rouge/template_lexer.rb +2 -0
  80. data/lib/rouge/text_analyzer.rb +2 -0
  81. data/lib/rouge/theme.rb +2 -0
  82. data/lib/rouge/themes/base16.rb +2 -0
  83. data/lib/rouge/themes/colorful.rb +2 -0
  84. data/lib/rouge/themes/github.rb +2 -0
  85. data/lib/rouge/themes/monokai.rb +2 -71
  86. data/lib/rouge/themes/monokai_sublime.rb +90 -0
  87. data/lib/rouge/themes/thankful_eyes.rb +2 -0
  88. data/lib/rouge/token.rb +2 -0
  89. data/lib/rouge/util.rb +2 -0
  90. data/lib/rouge/version.rb +3 -1
  91. metadata +3 -2
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class PlainText < Lexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Prolog < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Properties < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Puppet < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Python < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  load_const :Javascript, 'javascript.rb'
@@ -21,7 +23,7 @@ module Rouge
21
23
  push :type_block
22
24
  end
23
25
  end
24
-
26
+
25
27
  state :type_block do
26
28
  rule /(id)(\s*)(:)(\s*)(#{id_with_dots})/ do
27
29
  groups Name::Label, Text, Punctuation, Text, Keyword::Declaration
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class R < RegexLexer
@@ -1,4 +1,4 @@
1
- # -*- coding: utf-8 -*-
1
+ # -*- coding: utf-8 -*- #
2
2
  module Rouge
3
3
  module Lexers
4
4
  class Racket < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Ruby < RegexLexer
@@ -14,7 +16,7 @@ module Rouge
14
16
  return 1 if text.shebang? 'ruby'
15
17
  end
16
18
 
17
- state :strings do
19
+ state :sigil_strings do
18
20
  # symbols
19
21
  rule %r(
20
22
  : # initial :
@@ -27,13 +29,9 @@ module Rouge
27
29
  Str::Symbol
28
30
 
29
31
  rule /:'(\\\\|\\'|[^'])*'/, Str::Symbol
30
- rule /\b[a-z_]\w*?:\s+/, Str::Symbol, :expr_start
31
- rule /'(\\\\|\\'|[^'])*'/, Str::Single
32
32
  rule /:"/, Str::Symbol, :simple_sym
33
- rule /"/, Str::Double, :simple_string
34
- rule /(?<!\.)`/, Str::Backtick, :simple_backtick
35
33
 
36
- # %-style delimiters
34
+ # %-sigiled strings
37
35
  # %(abc), %[abc], %<abc>, %.abc., %r.abc., etc
38
36
  delimiter_map = { '{' => '}', '[' => ']', '(' => ')', '<' => '>' }
39
37
  rule /%([rqswQWxiI])?([^\w\s])/ do |m|
@@ -76,6 +74,13 @@ module Rouge
76
74
  end
77
75
  end
78
76
 
77
+ state :strings do
78
+ rule /\b[a-z_]\w*?:\s+/, Str::Symbol, :expr_start
79
+ rule /'(\\\\|\\'|[^'])*'/, Str::Single
80
+ rule /"/, Str::Double, :simple_string
81
+ rule /(?<!\.)`/, Str::Backtick, :simple_backtick
82
+ end
83
+
79
84
  state :regex_flags do
80
85
  rule /[mixounse]*/, Str::Regex, :pop!
81
86
  end
@@ -137,14 +142,40 @@ module Rouge
137
142
  @heredoc_queue = []
138
143
  end
139
144
 
140
- state :root do
145
+ state :whitespace do
146
+ mixin :inline_whitespace
141
147
  rule /\n\s*/m, Text, :expr_start
142
- rule /\s+/, Text # NB: NOT /m
143
148
  rule /#.*$/, Comment::Single
144
149
 
145
150
  rule %r(=begin\b.*?end\b)m, Comment::Multiline
151
+ end
152
+
153
+ state :inline_whitespace do
154
+ rule /[ \t\r]+/, Text
155
+ end
156
+
157
+ state :root do
158
+ mixin :whitespace
159
+ rule /__END__/, Comment::Preproc, :end_part
160
+
161
+ rule /0_?[0-7]+(?:_[0-7]+)*/, Num::Oct
162
+ rule /0x[0-9A-Fa-f]+(?:_[0-9A-Fa-f]+)*/, Num::Hex
163
+ rule /0b[01]+(?:_[01]+)*/, Num::Bin
164
+ rule /[\d]+(?:_\d+)*/, Num::Integer
165
+
166
+ # names
167
+ rule /@@[a-z_]\w*/i, Name::Variable::Class
168
+ rule /@[a-z_]\w*/i, Name::Variable::Instance
169
+ rule /\$\w+/, Name::Variable::Global
170
+ rule %r(\$[!@&`'+~=/\\,;.<>_*\$?:"]), Name::Variable::Global
171
+ rule /\$-[0adFiIlpvw]/, Name::Variable::Global
172
+ rule /::/, Operator
173
+
174
+ mixin :strings
175
+
146
176
  rule /(?:#{keywords.join('|')})\b/, Keyword, :expr_start
147
177
  rule /(?:#{keywords_pseudo.join('|')})\b/, Keyword::Pseudo, :expr_start
178
+
148
179
  rule %r(
149
180
  (module)
150
181
  (\s+)
@@ -163,39 +194,22 @@ module Rouge
163
194
  push :classname
164
195
  end
165
196
 
166
- rule /(?:#{builtins_q.join('|')})\?/, Name::Builtin, :expr_start
197
+ rule /(?:#{builtins_q.join('|')})[?]/, Name::Builtin, :expr_start
167
198
  rule /(?:#{builtins_b.join('|')})!/, Name::Builtin, :expr_start
168
199
  rule /(?<!\.)(?:#{builtins_g.join('|')})\b/,
169
200
  Name::Builtin, :method_call
170
201
 
171
- rule /__END__/, Comment::Preproc, :end_part
172
-
173
- rule /0_?[0-7]+(?:_[0-7]+)*/, Num::Oct
174
- rule /0x[0-9A-Fa-f]+(?:_[0-9A-Fa-f]+)*/, Num::Hex
175
- rule /0b[01]+(?:_[01]+)*/, Num::Bin
176
- rule /[\d]+(?:_\d+)*/, Num::Integer
177
-
178
- # names
179
- rule /@@[a-z_]\w*/i, Name::Variable::Class
180
- rule /@[a-z_]\w*/i, Name::Variable::Instance
181
- rule /\$\w+/, Name::Variable::Global
182
- rule %r(\$[!@&`'+~=/\\,;.<>_*\$?:"]), Name::Variable::Global
183
- rule /\$-[0adFiIlpvw]/, Name::Variable::Global
184
- rule /::/, Operator
185
-
186
- mixin :strings
187
-
188
202
  # char operator. ?x evaulates to "x", unless there's a digit
189
203
  # beforehand like x>=0?n[x]:""
190
204
  rule %r(
191
- \?(\\[MC]-)* # modifiers
205
+ [?](\\[MC]-)* # modifiers
192
206
  (\\([\\abefnrstv\#"']|x[a-fA-F0-9]{1,2}|[0-7]{1,3})|\S)
193
207
  (?!\w)
194
208
  )x, Str::Char
195
209
 
196
210
  mixin :has_heredocs
197
211
 
198
- rule /[A-Z][a-zA-Z0-9_]+/, Name::Constant, :method_call
212
+ rule /[A-Z][a-zA-Z0-9_]*/, Name::Constant, :method_call
199
213
  rule /(\.|::)(\s*)([a-z_]\w*[!?]?|[*%&^`~+-\/\[<>=])/ do
200
214
  groups Punctuation, Text, Name::Function
201
215
  push :expr_start
@@ -279,10 +293,18 @@ module Rouge
279
293
 
280
294
  state :classname do
281
295
  rule /\s+/, Text
282
- rule /\(/, Punctuation, :defexpr
296
+ rule /\(/ do
297
+ token Punctuation
298
+ push :defexpr
299
+ push :expr_start
300
+ end
283
301
 
284
302
  # class << expr
285
- rule /<</, Operator, :pop!
303
+ rule /<</ do
304
+ token Operator
305
+ goto :expr_start
306
+ end
307
+
286
308
  rule /[A-Z_]\w*/, Name::Class
287
309
 
288
310
  rule(//) { pop! }
@@ -293,7 +315,12 @@ module Rouge
293
315
  groups Punctuation, Operator
294
316
  pop!
295
317
  end
296
- rule /\(/, Punctuation, :defexpr
318
+ rule /\(/ do
319
+ token Punctuation
320
+ push :defexpr
321
+ push :expr_start
322
+ end
323
+
297
324
  mixin :root
298
325
  end
299
326
 
@@ -327,12 +354,15 @@ module Rouge
327
354
 
328
355
  rule(%r((?=\s*/))) { pop! }
329
356
 
330
- rule(//) { goto :expr_start }
357
+ rule(/\s+/) { token Text; goto :expr_start }
358
+ rule(//) { pop! }
331
359
  end
332
360
 
333
361
  state :expr_start do
334
- rule %r((\s*)(/)) do
335
- groups Text, Str::Regex
362
+ mixin :inline_whitespace
363
+
364
+ rule %r(/) do
365
+ token Str::Regex
336
366
  goto :slash_regex
337
367
  end
338
368
 
@@ -343,6 +373,8 @@ module Rouge
343
373
  pop!
344
374
  end
345
375
 
376
+ mixin :sigil_strings
377
+
346
378
  rule(//) { pop! }
347
379
  end
348
380
 
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Rust < RegexLexer
@@ -17,6 +19,7 @@ module Rouge
17
19
  as assert break const copy do drop else enum extern fail false
18
20
  fn for if impl let log loop match mod move mut priv pub pure
19
21
  ref return self static struct true trait type unsafe use while
22
+ box
20
23
  )
21
24
  end
22
25
 
@@ -30,6 +33,7 @@ module Rouge
30
33
  Neg Nil None Num off_t Ok Option Ord Owned pid_t Ptr ptrdiff_t
31
34
  Right Send Shl Shr size_t Some ssize_t str Sub Success time_t
32
35
  u16 u32 u64 u8 uint uintptr_t
36
+ Box Vec String Gc Rc Arc
33
37
  )
34
38
  end
35
39
 
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  load_const :SassCommon, 'sass/common.rb'
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  # shared states with SCSS
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Scheme < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  load_const :SassCommon, 'sass/common.rb'
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Sed < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Shell < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class Smalltalk < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class SML < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class SQL < RegexLexer
@@ -1,4 +1,4 @@
1
- # encoding: utf-8
1
+ # -*- coding: utf-8 -*- #
2
2
 
3
3
  module Rouge
4
4
  module Lexers
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class TCL < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class TeX < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class TOML < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class VisualBasic < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class VimL < RegexLexer
@@ -1,11 +1,12 @@
1
+ # encoding: utf-8
1
2
  # DO NOT EDIT: automatically generated by `rake builtins:vim`.
2
3
  # see tasks/vim.rake for more info.
3
4
  module Rouge
4
5
  module Lexers
5
6
  class VimL
6
7
  def self.keywords
7
- @keywords ||= {:command=>[[":p", ":p"], ["Allargs", "Allargs"], ["DiffOrig", "DiffOrig"], ["Error", "Error"], ["Man", "Man"], ["MyCommand", "MyCommand"], ["Mycmd", "Mycmd"], ["N", "N"], ["N", "Next"], ["P", "P"], ["P", "Print"], ["Ren", "Ren"], ["Rena", "Rena"], ["Renu", "Renu"], ["TOhtml", "TOhtml"], ["X", "X"], ["XMLent", "XMLent"], ["XMLns", "XMLns"], ["a", "a"], ["ab", "ab"], ["abc", "abclear"], ["abo", "aboveleft"], ["al", "all"], ["ar", "ar"], ["ar", "args"], ["arga", "argadd"], ["argd", "argdelete"], ["argdo", "argdo"], ["arge", "argedit"], ["argg", "argglobal"], ["argl", "arglocal"], ["argu", "argument"], ["as", "ascii"], ["au", "au"], ["b", "buffer"], ["bN", "bNext"], ["ba", "ball"], ["bad", "badd"], ["bar", "bar"], ["bd", "bdelete"], ["bel", "belowright"], ["bf", "bfirst"], ["bl", "blast"], ["bm", "bmodified"], ["bn", "bnext"], ["bo", "botright"], ["bp", "bprevious"], ["br", "br"], ["br", "brewind"], ["brea", "break"], ["breaka", "breakadd"], ["breakd", "breakdel"], ["breakl", "breaklist"], ["bro", "browse"], ["browseset", "browseset"], ["bu", "bu"], ["buf", "buf"], ["bufdo", "bufdo"], ["buffers", "buffers"], ["bun", "bunload"], ["bw", "bwipeout"], ["c", "c"], ["c", "change"], ["cN", "cN"], ["cN", "cNext"], ["cNf", "cNf"], ["cNf", "cNfile"], ["cabc", "cabclear"], ["cad", "cad"], ["cad", "caddexpr"], ["caddb", "caddbuffer"], ["caddf", "caddfile"], ["cal", "call"], ["cat", "catch"], ["cb", "cbuffer"], ["cc", "cc"], ["ccl", "cclose"], ["cd", "cd"], ["ce", "center"], ["cex", "cexpr"], ["cf", "cfile"], ["cfir", "cfirst"], ["cg", "cgetfile"], ["cgetb", "cgetbuffer"], ["cgete", "cgetexpr"], ["changes", "changes"], ["chd", "chdir"], ["che", "checkpath"], ["checkt", "checktime"], ["cl", "cl"], ["cl", "clist"], ["cla", "clast"], ["clo", "close"], ["cmapc", "cmapclear"], ["cmdname", "cmdname"], ["cn", "cn"], ["cn", "cnext"], ["cnew", "cnewer"], ["cnf", "cnf"], ["cnf", "cnfile"], ["co", "copy"], ["col", "colder"], ["colo", "colorscheme"], ["com", "com"], ["comc", "comclear"], ["comment", "comment"], ["comp", "compiler"], ["con", "con"], ["con", "continue"], ["conf", "confirm"], ["cope", "copen"], ["count", "count"], ["cp", "cprevious"], ["cpf", "cpfile"], ["cq", "cquit"], ["cr", "crewind"], ["cs", "cs"], ["cscope", "cscope"], ["cstag", "cstag"], ["cuna", "cunabbrev"], ["cw", "cwindow"], ["d", "d"], ["d", "delete"], ["de", "de"], ["debug", "debug"], ["debugg", "debuggreedy"], ["del", "del"], ["delc", "delcommand"], ["delf", "delf"], ["delf", "delfunction"], ["delm", "delmarks"], ["di", "di"], ["di", "display"], ["diffg", "diffget"], ["diffo", "diffo"], ["diffoff", "diffoff"], ["diffp", "diffp"], ["diffpatch", "diffpatch"], ["diffpu", "diffput"], ["diffsplit", "diffsplit"], ["difft", "difft"], ["diffthis", "diffthis"], ["diffu", "diffupdate"], ["dig", "dig"], ["dig", "digraphs"], ["dj", "djump"], ["dl", "dlist"], ["do", "do"], ["doau", "doau"], ["dr", "drop"], ["ds", "dsearch"], ["dsp", "dsplit"], ["dwim", "dwim"], ["e", "e"], ["e", "edit"], ["e:e", "e:e"], ["e:e:e", "e:e:e"], ["e:e:r", "e:e:r"], ["ea", "ea"], ["earlier", "earlier"], ["ec", "ec"], ["echoe", "echoerr"], ["echom", "echomsg"], ["echon", "echon"], ["el", "else"], ["elsei", "elseif"], ["em", "emenu"], ["emenu", "emenu"], ["en", "en"], ["en", "endif"], ["endf", "endf"], ["endf", "endfunction"], ["endfo", "endfor"], ["endfun", "endfun"], ["endt", "endtry"], ["endw", "endwhile"], ["ene", "enew"], ["ex", "ex"], ["exi", "exit"], ["exu", "exusage"], ["f", "f"], ["f", "file"], ["filename", "filename"], ["files", "files"], ["filet", "filet"], ["filetype", "filetype"], ["fin", "fin"], ["fin", "find"], ["fina", "finally"], ["fini", "finish"], ["fir", "first"], ["fix", "fixdel"], ["fo", "fold"], ["foldc", "foldclose"], ["foldd", "folddoopen"], ["folddoc", "folddoclosed"], ["foldo", "foldopen"], ["for", "for"], ["fu", "fu"], ["fu", "function"], ["fun", "fun"], ["g", "g"], ["get", "get"], ["go", "goto"], ["gr", "grep"], ["grepa", "grepadd"], ["gs", "gs"], ["gui", "gui"], ["gvim", "gvim"], ["h", "h"], ["h", "help"], ["ha", "hardcopy"], ["helpf", "helpfind"], ["helpg", "helpgrep"], ["helpt", "helptags"], ["hi", "hi"], ["hid", "hide"], ["his", "history"], ["i", "i"], ["ia", "ia"], ["iabc", "iabclear"], ["if", "if"], ["ij", "ijump"], ["il", "ilist"], ["imapc", "imapclear"], ["in", "in"], ["index", "index"], ["intro", "intro"], ["is", "isearch"], ["isp", "isplit"], ["iuna", "iunabbrev"], ["j", "join"], ["ju", "jumps"], ["k", "k"], ["kee", "keepmarks"], ["keepa", "keepa"], ["keepalt", "keepalt"], ["keepj", "keepjumps"], ["l", "l"], ["l", "list"], ["lN", "lN"], ["lN", "lNext"], ["lNf", "lNf"], ["lNf", "lNfile"], ["la", "la"], ["la", "last"], ["lad", "lad"], ["lad", "laddexpr"], ["laddb", "laddbuffer"], ["laddf", "laddfile"], ["lan", "lan"], ["lan", "language"], ["lat", "lat"], ["later", "later"], ["lb", "lbuffer"], ["lc", "lcd"], ["lch", "lchdir"], ["lcl", "lclose"], ["lcs", "lcs"], ["lcscope", "lcscope"], ["le", "left"], ["lefta", "leftabove"], ["let", "let"], ["lex", "lexpr"], ["lf", "lfile"], ["lfir", "lfirst"], ["lg", "lgetfile"], ["lgetb", "lgetbuffer"], ["lgete", "lgetexpr"], ["lgr", "lgrep"], ["lgrepa", "lgrepadd"], ["lh", "lhelpgrep"], ["ll", "ll"], ["lla", "llast"], ["lli", "llist"], ["lmak", "lmake"], ["lmapc", "lmapclear"], ["lne", "lne"], ["lne", "lnext"], ["lnew", "lnewer"], ["lnf", "lnf"], ["lnf", "lnfile"], ["lo", "lo"], ["lo", "loadview"], ["loadk", "loadk"], ["loadkeymap", "loadkeymap"], ["loc", "lockmarks"], ["locale", "locale"], ["lockv", "lockvar"], ["lol", "lolder"], ["lop", "lopen"], ["lp", "lprevious"], ["lpf", "lpfile"], ["lr", "lrewind"], ["ls", "ls"], ["lt", "ltag"], ["lua", "lua"], ["luado", "luado"], ["luafile", "luafile"], ["lv", "lvimgrep"], ["lvimgrepa", "lvimgrepadd"], ["lw", "lwindow"], ["m", "move"], ["ma", "ma"], ["ma", "mark"], ["main", "main"], ["main", "main"], ["mak", "make"], ["marks", "marks"], ["mat", "match"], ["menut", "menut"], ["menut", "menutranslate"], ["mes", "mes"], ["messages", "messages"], ["mk", "mk"], ["mk", "mkexrc"], ["mkdir", "mkdir"], ["mks", "mksession"], ["mksp", "mkspell"], ["mkv", "mkv"], ["mkv", "mkvimrc"], ["mkvie", "mkview"], ["mo", "mo"], ["mod", "mode"], ["mv", "mv"], ["mz", "mz"], ["mz", "mzscheme"], ["mzf", "mzfile"], ["n", "n"], ["n", "n"], ["n", "next"], ["nb", "nbkey"], ["nbc", "nbclose"], ["nbs", "nbstart"], ["ne", "ne"], ["new", "new"], ["nkf", "nkf"], ["nmapc", "nmapclear"], ["noa", "noa"], ["noautocmd", "noautocmd"], ["noh", "nohlsearch"], ["nu", "number"], ["o", "o"], ["o", "open"], ["ol", "oldfiles"], ["omapc", "omapclear"], ["on", "only"], ["opt", "options"], ["ownsyntax", "ownsyntax"], ["p", "p"], ["p", "print"], ["p:", "p:"], ["p:", "p:"], ["p:gs", "p:gs"], ["p:h", "p:h"], ["p:h:h", "p:h:h"], ["p:r", "p:r"], ["p:t", "p:t"], ["pat", "pat"], ["pat", "pat"], ["pc", "pclose"], ["pe", "pe"], ["pe", "perl"], ["ped", "pedit"], ["perld", "perldo"], ["po", "pop"], ["popu", "popu"], ["popu", "popup"], ["pp", "ppop"], ["pr", "pr"], ["pre", "preserve"], ["prev", "previous"], ["pro", "pro"], ["prof", "profile"], ["profd", "profdel"], ["promptf", "promptfind"], ["promptr", "promptrepl"], ["ps", "psearch"], ["ptN", "ptN"], ["ptN", "ptNext"], ["pta", "ptag"], ["ptf", "ptfirst"], ["ptj", "ptjump"], ["ptl", "ptlast"], ["ptn", "ptn"], ["ptn", "ptnext"], ["ptp", "ptprevious"], ["ptr", "ptrewind"], ["pts", "ptselect"], ["pu", "put"], ["pw", "pwd"], ["py", "py"], ["py", "python"], ["py3", "py3"], ["py3", "py3"], ["py3file", "py3file"], ["pyf", "pyfile"], ["python3", "python3"], ["q", "q"], ["q", "quit"], ["qa", "qall"], ["quita", "quitall"], ["quote", "quote"], ["r", "r"], ["r", "r"], ["r", "read"], ["r:e", "r:e"], ["r:r", "r:r"], ["r:r:r", "r:r:r"], ["re", "re"], ["rec", "recover"], ["red", "red"], ["red", "redo"], ["redi", "redir"], ["redr", "redraw"], ["redraws", "redrawstatus"], ["reg", "registers"], ["res", "resize"], ["ret", "retab"], ["retu", "return"], ["rew", "rewind"], ["ri", "right"], ["rightb", "rightbelow"], ["ru", "ru"], ["ru", "runtime"], ["rub", "ruby"], ["rubyd", "rubydo"], ["rubyf", "rubyfile"], ["rundo", "rundo"], ["rv", "rviminfo"], ["s", "s"], ["s", "s"], ["s", "s"], ["s", "s"], ["sN", "sNext"], ["sa", "sargument"], ["sal", "sall"], ["san", "sandbox"], ["sav", "saveas"], ["sb", "sbuffer"], ["sbN", "sbNext"], ["sba", "sball"], ["sbf", "sbfirst"], ["sbl", "sblast"], ["sbm", "sbmodified"], ["sbn", "sbnext"], ["sbp", "sbprevious"], ["sbr", "sbrewind"], ["scrip", "scrip"], ["scrip", "scriptnames"], ["scripte", "scriptencoding"], ["scs", "scs"], ["scscope", "scscope"], ["se", "set"], ["setf", "setfiletype"], ["setg", "setglobal"], ["setl", "setlocal"], ["sf", "sfind"], ["sfir", "sfirst"], ["sh", "shell"], ["si", "si"], ["sig", "sig"], ["sign", "sign"], ["sil", "silent"], ["sim", "simalt"], ["sl", "sl"], ["sl", "sleep"], ["sla", "slast"], ["sm", "smagic"], ["sm", "smap"], ["sme", "sme"], ["smenu", "smenu"], ["sn", "snext"], ["sni", "sniff"], ["sno", "snomagic"], ["snoreme", "snoreme"], ["snoremenu", "snoremenu"], ["so", "so"], ["so", "source"], ["sor", "sort"], ["sp", "split"], ["spe", "spe"], ["spe", "spellgood"], ["spelld", "spelldump"], ["spelli", "spellinfo"], ["spellr", "spellrepall"], ["spellu", "spellundo"], ["spellw", "spellwrong"], ["spr", "sprevious"], ["sre", "srewind"], ["st", "st"], ["st", "stop"], ["sta", "stag"], ["star", "star"], ["star", "startinsert"], ["start", "start"], ["startg", "startgreplace"], ["startr", "startreplace"], ["stj", "stjump"], ["stopi", "stopinsert"], ["sts", "stselect"], ["sub", "sub"], ["sub", "sub"], ["sun", "sunhide"], ["sunme", "sunme"], ["sunmenu", "sunmenu"], ["sus", "suspend"], ["sv", "sview"], ["sw", "swapname"], ["sy", "sy"], ["syn", "syn"], ["sync", "sync"], ["syncbind", "syncbind"], ["synlist", "synlist"], ["t", "t"], ["t:r", "t:r"], ["tN", "tN"], ["tN", "tNext"], ["ta", "ta"], ["ta", "tag"], ["tab", "tab"], ["tabN", "tabN"], ["tabN", "tabNext"], ["tabc", "tabclose"], ["tabd", "tabdo"], ["tabe", "tabedit"], ["tabf", "tabfind"], ["tabfir", "tabfirst"], ["tabl", "tablast"], ["tabm", "tabmove"], ["tabn", "tabnext"], ["tabnew", "tabnew"], ["tabo", "tabonly"], ["tabp", "tabprevious"], ["tabr", "tabrewind"], ["tabs", "tabs"], ["tags", "tags"], ["tc", "tcl"], ["tcld", "tcldo"], ["tclf", "tclfile"], ["te", "tearoff"], ["tf", "tfirst"], ["th", "throw"], ["tj", "tjump"], ["tl", "tlast"], ["tm", "tm"], ["tm", "tmenu"], ["tn", "tn"], ["tn", "tnext"], ["to", "topleft"], ["tp", "tprevious"], ["tr", "tr"], ["tr", "trewind"], ["try", "try"], ["ts", "tselect"], ["tu", "tu"], ["tu", "tunmenu"], ["u", "u"], ["u", "undo"], ["un", "un"], ["una", "unabbreviate"], ["undoj", "undojoin"], ["undol", "undolist"], ["unh", "unhide"], ["unl", "unl"], ["unlo", "unlockvar"], ["uns", "unsilent"], ["up", "update"], ["v", "v"], ["ve", "ve"], ["ve", "version"], ["verb", "verbose"], ["version", "version"], ["version", "version"], ["vert", "vertical"], ["vi", "vi"], ["vi", "visual"], ["vie", "view"], ["vim", "vimgrep"], ["vimgrepa", "vimgrepadd"], ["viu", "viusage"], ["vmapc", "vmapclear"], ["vne", "vnew"], ["vs", "vsplit"], ["w", "w"], ["w", "write"], ["wN", "wNext"], ["wa", "wall"], ["wh", "while"], ["win", "win"], ["win", "winsize"], ["winc", "wincmd"], ["windo", "windo"], ["winp", "winpos"], ["wn", "wnext"], ["wp", "wprevious"], ["wq", "wq"], ["wqa", "wqall"], ["ws", "wsverb"], ["wundo", "wundo"], ["wv", "wviminfo"], ["x", "x"], ["x", "xit"], ["xa", "xall"], ["xmapc", "xmapclear"], ["xme", "xme"], ["xmenu", "xmenu"], ["xnoreme", "xnoreme"], ["xnoremenu", "xnoremenu"], ["xterm", "xterm"], ["xunme", "xunme"], ["xunmenu", "xunmenu"], ["xwininfo", "xwininfo"], ["y", "yank"]], :option=>[], :auto=>[["BufAdd", "BufAdd"], ["BufCreate", "BufCreate"], ["BufDelete", "BufDelete"], ["BufEnter", "BufEnter"], ["BufFilePost", "BufFilePost"], ["BufFilePre", "BufFilePre"], ["BufHidden", "BufHidden"], ["BufLeave", "BufLeave"], ["BufNew", "BufNew"], ["BufNewFile", "BufNewFile"], ["BufRead", "BufRead"], ["BufReadCmd", "BufReadCmd"], ["BufReadPost", "BufReadPost"], ["BufReadPre", "BufReadPre"], ["BufUnload", "BufUnload"], ["BufWinEnter", "BufWinEnter"], ["BufWinLeave", "BufWinLeave"], ["BufWipeout", "BufWipeout"], ["BufWrite", "BufWrite"], ["BufWriteCmd", "BufWriteCmd"], ["BufWritePost", "BufWritePost"], ["BufWritePre", "BufWritePre"], ["Cmd", "Cmd"], ["CmdwinEnter", "CmdwinEnter"], ["CmdwinLeave", "CmdwinLeave"], ["ColorScheme", "ColorScheme"], ["CursorHold", "CursorHold"], ["CursorHoldI", "CursorHoldI"], ["CursorMoved", "CursorMoved"], ["CursorMovedI", "CursorMovedI"], ["EncodingChanged", "EncodingChanged"], ["FileAppendCmd", "FileAppendCmd"], ["FileAppendPost", "FileAppendPost"], ["FileAppendPre", "FileAppendPre"], ["FileChangedRO", "FileChangedRO"], ["FileChangedShell", "FileChangedShell"], ["FileChangedShellPost", "FileChangedShellPost"], ["FileEncoding", "FileEncoding"], ["FileReadCmd", "FileReadCmd"], ["FileReadPost", "FileReadPost"], ["FileReadPre", "FileReadPre"], ["FileType", "FileType"], ["FileWriteCmd", "FileWriteCmd"], ["FileWritePost", "FileWritePost"], ["FileWritePre", "FileWritePre"], ["FilterReadPost", "FilterReadPost"], ["FilterReadPre", "FilterReadPre"], ["FilterWritePost", "FilterWritePost"], ["FilterWritePre", "FilterWritePre"], ["FocusGained", "FocusGained"], ["FocusLost", "FocusLost"], ["FuncUndefined", "FuncUndefined"], ["GUIEnter", "GUIEnter"], ["GUIFailed", "GUIFailed"], ["InsertChange", "InsertChange"], ["InsertCharPre", "InsertCharPre"], ["InsertEnter", "InsertEnter"], ["InsertLeave", "InsertLeave"], ["MenuPopup", "MenuPopup"], ["QuickFixCmdPost", "QuickFixCmdPost"], ["QuickFixCmdPre", "QuickFixCmdPre"], ["RemoteReply", "RemoteReply"], ["SessionLoadPost", "SessionLoadPost"], ["ShellCmdPost", "ShellCmdPost"], ["ShellFilterPost", "ShellFilterPost"], ["SourceCmd", "SourceCmd"], ["SourcePre", "SourcePre"], ["SpellFileMissing", "SpellFileMissing"], ["StdinReadPost", "StdinReadPost"], ["StdinReadPre", "StdinReadPre"], ["SwapExists", "SwapExists"], ["Syntax", "Syntax"], ["TabEnter", "TabEnter"], ["TabLeave", "TabLeave"], ["TermChanged", "TermChanged"], ["TermResponse", "TermResponse"], ["User", "User"], ["UserGettingBored", "UserGettingBored"], ["VimEnter", "VimEnter"], ["VimLeave", "VimLeave"], ["VimLeavePre", "VimLeavePre"], ["VimResized", "VimResized"], ["WinEnter", "WinEnter"], ["WinLeave", "WinLeave"], ["event", "event"]]}
8
+ @keywords ||= {:command=>[["a", "a"], ["ab", "ab"], ["abc", "abclear"], ["abo", "aboveleft"], ["al", "all"], ["ar", "ar"], ["ar", "args"], ["arga", "argadd"], ["argd", "argdelete"], ["argdo", "argdo"], ["arge", "argedit"], ["argg", "argglobal"], ["argl", "arglocal"], ["argu", "argument"], ["as", "ascii"], ["au", "au"], ["b", "buffer"], ["bN", "bNext"], ["ba", "ball"], ["bad", "badd"], ["bd", "bdelete"], ["bel", "belowright"], ["bf", "bfirst"], ["bl", "blast"], ["bm", "bmodified"], ["bn", "bnext"], ["bo", "botright"], ["bp", "bprevious"], ["br", "br"], ["br", "brewind"], ["brea", "break"], ["breaka", "breakadd"], ["breakd", "breakdel"], ["breakl", "breaklist"], ["bro", "browse"], ["bu", "bu"], ["buf", "buf"], ["bufdo", "bufdo"], ["buffers", "buffers"], ["bun", "bunload"], ["bw", "bwipeout"], ["c", "c"], ["c", "change"], ["cN", "cN"], ["cN", "cNext"], ["cNf", "cNf"], ["cNf", "cNfile"], ["cabc", "cabclear"], ["cad", "cad"], ["cad", "caddexpr"], ["caddb", "caddbuffer"], ["caddf", "caddfile"], ["cal", "call"], ["cat", "catch"], ["cb", "cbuffer"], ["cc", "cc"], ["ccl", "cclose"], ["cd", "cd"], ["ce", "center"], ["cex", "cexpr"], ["cf", "cfile"], ["cfir", "cfirst"], ["cg", "cgetfile"], ["cgetb", "cgetbuffer"], ["cgete", "cgetexpr"], ["changes", "changes"], ["chd", "chdir"], ["che", "checkpath"], ["checkt", "checktime"], ["cl", "cl"], ["cl", "clist"], ["cla", "clast"], ["clo", "close"], ["cmapc", "cmapclear"], ["cn", "cn"], ["cn", "cnext"], ["cnew", "cnewer"], ["cnf", "cnf"], ["cnf", "cnfile"], ["co", "copy"], ["col", "colder"], ["colo", "colorscheme"], ["com", "com"], ["comc", "comclear"], ["comp", "compiler"], ["con", "con"], ["con", "continue"], ["conf", "confirm"], ["cope", "copen"], ["cp", "cprevious"], ["cpf", "cpfile"], ["cq", "cquit"], ["cr", "crewind"], ["cs", "cs"], ["cscope", "cscope"], ["cstag", "cstag"], ["cuna", "cunabbrev"], ["cw", "cwindow"], ["d", "d"], ["d", "delete"], ["de", "de"], ["debug", "debug"], ["debugg", "debuggreedy"], ["del", "del"], ["delc", "delcommand"], ["delel", "delel"], ["delep", "delep"], ["deletel", "deletel"], ["deletep", "deletep"], ["deletl", "deletl"], ["deletp", "deletp"], ["delf", "delf"], ["delf", "delfunction"], ["dell", "dell"], ["delm", "delmarks"], ["delp", "delp"], ["dep", "dep"], ["di", "di"], ["di", "display"], ["diffg", "diffget"], ["diffo", "diffoff"], ["diffp", "diffpatch"], ["diffpu", "diffput"], ["diffs", "diffsplit"], ["difft", "diffthis"], ["diffu", "diffupdate"], ["dig", "dig"], ["dig", "digraphs"], ["dir", "dir"], ["dj", "djump"], ["dl", "dl"], ["dli", "dlist"], ["do", "do"], ["doau", "doau"], ["dp", "dp"], ["dr", "drop"], ["ds", "dsearch"], ["dsp", "dsplit"], ["e", "e"], ["e", "edit"], ["ea", "ea"], ["earlier", "earlier"], ["ec", "ec"], ["echoe", "echoerr"], ["echom", "echomsg"], ["echon", "echon"], ["el", "else"], ["elsei", "elseif"], ["em", "emenu"], ["en", "en"], ["en", "endif"], ["endf", "endf"], ["endf", "endfunction"], ["endfo", "endfor"], ["endfun", "endfun"], ["endt", "endtry"], ["endw", "endwhile"], ["ene", "enew"], ["ex", "ex"], ["exi", "exit"], ["exu", "exusage"], ["f", "f"], ["f", "file"], ["files", "files"], ["filet", "filet"], ["filetype", "filetype"], ["fin", "fin"], ["fin", "find"], ["fina", "finally"], ["fini", "finish"], ["fir", "first"], ["fix", "fixdel"], ["fo", "fold"], ["foldc", "foldclose"], ["foldd", "folddoopen"], ["folddoc", "folddoclosed"], ["foldo", "foldopen"], ["for", "for"], ["fu", "fu"], ["fu", "function"], ["fun", "fun"], ["g", "g"], ["go", "goto"], ["gr", "grep"], ["grepa", "grepadd"], ["gui", "gui"], ["gvim", "gvim"], ["h", "h"], ["h", "help"], ["ha", "hardcopy"], ["helpf", "helpfind"], ["helpg", "helpgrep"], ["helpt", "helptags"], ["hi", "hi"], ["hid", "hide"], ["his", "history"], ["i", "i"], ["ia", "ia"], ["iabc", "iabclear"], ["if", "if"], ["ij", "ijump"], ["il", "ilist"], ["imapc", "imapclear"], ["in", "in"], ["intro", "intro"], ["is", "isearch"], ["isp", "isplit"], ["iuna", "iunabbrev"], ["j", "join"], ["ju", "jumps"], ["k", "k"], ["kee", "keepmarks"], ["keepa", "keepa"], ["keepalt", "keepalt"], ["keepj", "keepjumps"], ["keepp", "keeppatterns"], ["l", "l"], ["l", "list"], ["lN", "lN"], ["lN", "lNext"], ["lNf", "lNf"], ["lNf", "lNfile"], ["la", "la"], ["la", "last"], ["lad", "lad"], ["lad", "laddexpr"], ["laddb", "laddbuffer"], ["laddf", "laddfile"], ["lan", "lan"], ["lan", "language"], ["lat", "lat"], ["later", "later"], ["lb", "lbuffer"], ["lc", "lcd"], ["lch", "lchdir"], ["lcl", "lclose"], ["lcs", "lcs"], ["lcscope", "lcscope"], ["le", "left"], ["lefta", "leftabove"], ["lex", "lexpr"], ["lf", "lfile"], ["lfir", "lfirst"], ["lg", "lgetfile"], ["lgetb", "lgetbuffer"], ["lgete", "lgetexpr"], ["lgr", "lgrep"], ["lgrepa", "lgrepadd"], ["lh", "lhelpgrep"], ["ll", "ll"], ["lla", "llast"], ["lli", "llist"], ["lmak", "lmake"], ["lmapc", "lmapclear"], ["lne", "lne"], ["lne", "lnext"], ["lnew", "lnewer"], ["lnf", "lnf"], ["lnf", "lnfile"], ["lo", "lo"], ["lo", "loadview"], ["loadk", "loadk"], ["loadkeymap", "loadkeymap"], ["loc", "lockmarks"], ["lockv", "lockvar"], ["lol", "lolder"], ["lop", "lopen"], ["lp", "lprevious"], ["lpf", "lpfile"], ["lr", "lrewind"], ["ls", "ls"], ["lt", "ltag"], ["lua", "lua"], ["luado", "luado"], ["luafile", "luafile"], ["lv", "lvimgrep"], ["lvimgrepa", "lvimgrepadd"], ["lw", "lwindow"], ["m", "move"], ["ma", "ma"], ["ma", "mark"], ["mak", "make"], ["marks", "marks"], ["mat", "match"], ["menut", "menut"], ["menut", "menutranslate"], ["mes", "mes"], ["messages", "messages"], ["mk", "mk"], ["mk", "mkexrc"], ["mks", "mksession"], ["mksp", "mkspell"], ["mkv", "mkv"], ["mkv", "mkvimrc"], ["mkvie", "mkview"], ["mo", "mo"], ["mod", "mode"], ["mz", "mz"], ["mz", "mzscheme"], ["mzf", "mzfile"], ["n", "n"], ["n", "next"], ["nb", "nbkey"], ["nbc", "nbclose"], ["nbs", "nbstart"], ["ne", "ne"], ["new", "new"], ["nmapc", "nmapclear"], ["noa", "noa"], ["noautocmd", "noautocmd"], ["noh", "nohlsearch"], ["nu", "number"], ["o", "o"], ["o", "open"], ["ol", "oldfiles"], ["omapc", "omapclear"], ["on", "only"], ["opt", "options"], ["ownsyntax", "ownsyntax"], ["p", "p"], ["p", "print"], ["pc", "pclose"], ["pe", "pe"], ["pe", "perl"], ["ped", "pedit"], ["perld", "perldo"], ["po", "pop"], ["popu", "popu"], ["popu", "popup"], ["pp", "ppop"], ["pr", "pr"], ["pre", "preserve"], ["prev", "previous"], ["pro", "pro"], ["prof", "profile"], ["profd", "profdel"], ["promptf", "promptfind"], ["promptr", "promptrepl"], ["ps", "psearch"], ["ptN", "ptN"], ["ptN", "ptNext"], ["pta", "ptag"], ["ptf", "ptfirst"], ["ptj", "ptjump"], ["ptl", "ptlast"], ["ptn", "ptn"], ["ptn", "ptnext"], ["ptp", "ptprevious"], ["ptr", "ptrewind"], ["pts", "ptselect"], ["pu", "put"], ["pw", "pwd"], ["py", "py"], ["py", "python"], ["py3", "py3"], ["py3", "py3"], ["py3do", "py3do"], ["pydo", "pydo"], ["pyf", "pyfile"], ["python3", "python3"], ["q", "q"], ["q", "quit"], ["qa", "qall"], ["quita", "quitall"], ["r", "r"], ["r", "read"], ["re", "re"], ["rec", "recover"], ["red", "red"], ["red", "redo"], ["redi", "redir"], ["redr", "redraw"], ["redraws", "redrawstatus"], ["reg", "registers"], ["res", "resize"], ["ret", "retab"], ["retu", "return"], ["rew", "rewind"], ["ri", "right"], ["rightb", "rightbelow"], ["ru", "ru"], ["ru", "runtime"], ["rub", "ruby"], ["rubyd", "rubydo"], ["rubyf", "rubyfile"], ["rundo", "rundo"], ["rv", "rviminfo"], ["sN", "sNext"], ["sa", "sargument"], ["sal", "sall"], ["san", "sandbox"], ["sav", "saveas"], ["sb", "sbuffer"], ["sbN", "sbNext"], ["sba", "sball"], ["sbf", "sbfirst"], ["sbl", "sblast"], ["sbm", "sbmodified"], ["sbn", "sbnext"], ["sbp", "sbprevious"], ["sbr", "sbrewind"], ["scrip", "scrip"], ["scrip", "scriptnames"], ["scripte", "scriptencoding"], ["scs", "scs"], ["scscope", "scscope"], ["se", "set"], ["setf", "setfiletype"], ["setg", "setglobal"], ["setl", "setlocal"], ["sf", "sfind"], ["sfir", "sfirst"], ["sh", "shell"], ["si", "si"], ["sig", "sig"], ["sign", "sign"], ["sil", "silent"], ["sim", "simalt"], ["sl", "sl"], ["sl", "sleep"], ["sla", "slast"], ["sm", "smagic"], ["sm", "smap"], ["sme", "sme"], ["smenu", "smenu"], ["sn", "snext"], ["sni", "sniff"], ["sno", "snomagic"], ["snoreme", "snoreme"], ["snoremenu", "snoremenu"], ["so", "so"], ["so", "source"], ["sor", "sort"], ["sp", "split"], ["spe", "spe"], ["spe", "spellgood"], ["spelld", "spelldump"], ["spelli", "spellinfo"], ["spellr", "spellrepall"], ["spellu", "spellundo"], ["spellw", "spellwrong"], ["spr", "sprevious"], ["sre", "srewind"], ["st", "st"], ["st", "stop"], ["sta", "stag"], ["star", "star"], ["star", "startinsert"], ["start", "start"], ["startg", "startgreplace"], ["startr", "startreplace"], ["stj", "stjump"], ["stopi", "stopinsert"], ["sts", "stselect"], ["sun", "sunhide"], ["sunme", "sunme"], ["sunmenu", "sunmenu"], ["sus", "suspend"], ["sv", "sview"], ["sw", "swapname"], ["sy", "sy"], ["syn", "syn"], ["sync", "sync"], ["syncbind", "syncbind"], ["syntime", "syntime"], ["t", "t"], ["tN", "tN"], ["tN", "tNext"], ["ta", "ta"], ["ta", "tag"], ["tab", "tab"], ["tabN", "tabN"], ["tabN", "tabNext"], ["tabc", "tabclose"], ["tabd", "tabdo"], ["tabe", "tabedit"], ["tabf", "tabfind"], ["tabfir", "tabfirst"], ["tabl", "tablast"], ["tabm", "tabmove"], ["tabn", "tabnext"], ["tabnew", "tabnew"], ["tabo", "tabonly"], ["tabp", "tabprevious"], ["tabr", "tabrewind"], ["tabs", "tabs"], ["tags", "tags"], ["tc", "tcl"], ["tcld", "tcldo"], ["tclf", "tclfile"], ["te", "tearoff"], ["tf", "tfirst"], ["th", "throw"], ["tj", "tjump"], ["tl", "tlast"], ["tm", "tm"], ["tm", "tmenu"], ["tn", "tn"], ["tn", "tnext"], ["to", "topleft"], ["tp", "tprevious"], ["tr", "tr"], ["tr", "trewind"], ["try", "try"], ["ts", "tselect"], ["tu", "tu"], ["tu", "tunmenu"], ["u", "u"], ["u", "undo"], ["un", "un"], ["una", "unabbreviate"], ["undoj", "undojoin"], ["undol", "undolist"], ["unh", "unhide"], ["unl", "unl"], ["unlo", "unlockvar"], ["uns", "unsilent"], ["up", "update"], ["v", "v"], ["ve", "ve"], ["ve", "version"], ["verb", "verbose"], ["vert", "vertical"], ["vi", "vi"], ["vi", "visual"], ["vie", "view"], ["vim", "vimgrep"], ["vimgrepa", "vimgrepadd"], ["viu", "viusage"], ["vmapc", "vmapclear"], ["vne", "vnew"], ["vs", "vsplit"], ["w", "w"], ["w", "write"], ["wN", "wNext"], ["wa", "wall"], ["wh", "while"], ["win", "win"], ["win", "winsize"], ["winc", "wincmd"], ["windo", "windo"], ["winp", "winpos"], ["wn", "wnext"], ["wp", "wprevious"], ["wq", "wq"], ["wqa", "wqall"], ["ws", "wsverb"], ["wundo", "wundo"], ["wv", "wviminfo"], ["x", "x"], ["x", "xit"], ["xa", "xall"], ["xmapc", "xmapclear"], ["xme", "xme"], ["xmenu", "xmenu"], ["xnoreme", "xnoreme"], ["xnoremenu", "xnoremenu"], ["xunme", "xunme"], ["xunmenu", "xunmenu"], ["xwininfo", "xwininfo"], ["y", "yank"]], :option=>[], :auto=>[["BufAdd", "BufAdd"], ["BufCreate", "BufCreate"], ["BufDelete", "BufDelete"], ["BufEnter", "BufEnter"], ["BufFilePost", "BufFilePost"], ["BufFilePre", "BufFilePre"], ["BufHidden", "BufHidden"], ["BufLeave", "BufLeave"], ["BufNew", "BufNew"], ["BufNewFile", "BufNewFile"], ["BufRead", "BufRead"], ["BufReadCmd", "BufReadCmd"], ["BufReadPost", "BufReadPost"], ["BufReadPre", "BufReadPre"], ["BufUnload", "BufUnload"], ["BufWinEnter", "BufWinEnter"], ["BufWinLeave", "BufWinLeave"], ["BufWipeout", "BufWipeout"], ["BufWrite", "BufWrite"], ["BufWriteCmd", "BufWriteCmd"], ["BufWritePost", "BufWritePost"], ["BufWritePre", "BufWritePre"], ["Cmd", "Cmd"], ["CmdwinEnter", "CmdwinEnter"], ["CmdwinLeave", "CmdwinLeave"], ["ColorScheme", "ColorScheme"], ["CompleteDone", "CompleteDone"], ["CursorHold", "CursorHold"], ["CursorHoldI", "CursorHoldI"], ["CursorMoved", "CursorMoved"], ["CursorMovedI", "CursorMovedI"], ["EncodingChanged", "EncodingChanged"], ["FileAppendCmd", "FileAppendCmd"], ["FileAppendPost", "FileAppendPost"], ["FileAppendPre", "FileAppendPre"], ["FileChangedRO", "FileChangedRO"], ["FileChangedShell", "FileChangedShell"], ["FileChangedShellPost", "FileChangedShellPost"], ["FileEncoding", "FileEncoding"], ["FileReadCmd", "FileReadCmd"], ["FileReadPost", "FileReadPost"], ["FileReadPre", "FileReadPre"], ["FileType", "FileType"], ["FileWriteCmd", "FileWriteCmd"], ["FileWritePost", "FileWritePost"], ["FileWritePre", "FileWritePre"], ["FilterReadPost", "FilterReadPost"], ["FilterReadPre", "FilterReadPre"], ["FilterWritePost", "FilterWritePost"], ["FilterWritePre", "FilterWritePre"], ["FocusGained", "FocusGained"], ["FocusLost", "FocusLost"], ["FuncUndefined", "FuncUndefined"], ["GUIEnter", "GUIEnter"], ["GUIFailed", "GUIFailed"], ["InsertChange", "InsertChange"], ["InsertCharPre", "InsertCharPre"], ["InsertEnter", "InsertEnter"], ["InsertLeave", "InsertLeave"], ["MenuPopup", "MenuPopup"], ["QuickFixCmdPost", "QuickFixCmdPost"], ["QuickFixCmdPre", "QuickFixCmdPre"], ["QuitPre", "QuitPre"], ["RemoteReply", "RemoteReply"], ["SessionLoadPost", "SessionLoadPost"], ["ShellCmdPost", "ShellCmdPost"], ["ShellFilterPost", "ShellFilterPost"], ["SourceCmd", "SourceCmd"], ["SourcePre", "SourcePre"], ["SpellFileMissing", "SpellFileMissing"], ["StdinReadPost", "StdinReadPost"], ["StdinReadPre", "StdinReadPre"], ["SwapExists", "SwapExists"], ["Syntax", "Syntax"], ["TabEnter", "TabEnter"], ["TabLeave", "TabLeave"], ["TermChanged", "TermChanged"], ["TermResponse", "TermResponse"], ["TextChanged", "TextChanged"], ["TextChangedI", "TextChangedI"], ["User", "User"], ["UserGettingBored", "UserGettingBored"], ["VimEnter", "VimEnter"], ["VimLeave", "VimLeave"], ["VimLeavePre", "VimLeavePre"], ["VimResized", "VimResized"], ["WinEnter", "WinEnter"], ["WinLeave", "WinLeave"], ["event", "event"]]}
8
9
  end
9
10
  end
10
11
  end
11
- end
12
+ end
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class XML < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  module Lexers
3
5
  class YAML < RegexLexer
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  # this file is not require'd from the root. To use this plugin, run:
2
4
  #
3
5
  # require 'rouge/plugins/redcarpet'
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  # @abstract
3
5
  # A stateful lexer that uses sets of regular expressions to
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  # @abstract
3
5
  # A TemplateLexer is one that accepts a :parent option, to specify
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  class TextAnalyzer < String
3
5
  # Find a shebang. Returns nil if no shebang is present.
data/lib/rouge/theme.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # -*- coding: utf-8 -*- #
2
+
1
3
  module Rouge
2
4
  class Theme
3
5
  include Token::Tokens