diff options
author | Valerio Virgillito | 2012-07-17 11:29:09 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-07-17 11:29:09 -0700 |
commit | 58e86247524cc2d545bd6884f1b5c9fdba3b9164 (patch) | |
tree | 53305d354fce502ee39378babf47ace6c91ce2fd /imports/codemirror/mode/stex | |
parent | 0f0cffd4df85e7adf5081fe66c768c70b2ead9b3 (diff) | |
parent | 4f737b24c19ddc02d20f9783b8b080fc6ef11142 (diff) | |
download | ninja-58e86247524cc2d545bd6884f1b5c9fdba3b9164.tar.gz |
Merge branch 'refs/heads/master' into v0.7.1
Diffstat (limited to 'imports/codemirror/mode/stex')
-rw-r--r-- | imports/codemirror/mode/stex/stex.js | 10 | ||||
-rw-r--r-- | imports/codemirror/mode/stex/test.html | 12 |
2 files changed, 18 insertions, 4 deletions
diff --git a/imports/codemirror/mode/stex/stex.js b/imports/codemirror/mode/stex/stex.js index b89e619e..c0739ded 100644 --- a/imports/codemirror/mode/stex/stex.js +++ b/imports/codemirror/mode/stex/stex.js | |||
@@ -85,10 +85,12 @@ CodeMirror.defineMode("stex", function(cmCfg, modeCfg) | |||
85 | if (source.match(/^\\[a-zA-Z@]+/)) { | 85 | if (source.match(/^\\[a-zA-Z@]+/)) { |
86 | var cmdName = source.current(); | 86 | var cmdName = source.current(); |
87 | cmdName = cmdName.substr(1, cmdName.length-1); | 87 | cmdName = cmdName.substr(1, cmdName.length-1); |
88 | var plug = plugins[cmdName]; | 88 | var plug; |
89 | if (typeof(plug) == 'undefined') { | 89 | if (plugins.hasOwnProperty(cmdName)) { |
90 | plug = plugins["DEFAULT"]; | 90 | plug = plugins[cmdName]; |
91 | } | 91 | } else { |
92 | plug = plugins["DEFAULT"]; | ||
93 | } | ||
92 | plug = new plug(); | 94 | plug = new plug(); |
93 | pushCommand(state, plug); | 95 | pushCommand(state, plug); |
94 | setState(state, beginParams); | 96 | setState(state, beginParams); |
diff --git a/imports/codemirror/mode/stex/test.html b/imports/codemirror/mode/stex/test.html index b53a6a24..a60f4184 100644 --- a/imports/codemirror/mode/stex/test.html +++ b/imports/codemirror/mode/stex/test.html | |||
@@ -241,6 +241,18 @@ | |||
241 | 241 | ||
242 | </script> | 242 | </script> |
243 | 243 | ||
244 | <h2>New Commands</h2> | ||
245 | |||
246 | Should be able to define a new command that happens to be a method on Array | ||
247 | (e.g. <tt>pop</tt>): | ||
248 | <script language="javascript"> | ||
249 | MT.test('\\newcommand{\\pop}', | ||
250 | 'tag', '\\newcommand', | ||
251 | 'bracket', '{', | ||
252 | 'tag', '\\pop', | ||
253 | 'bracket', '}'); | ||
254 | </script> | ||
255 | |||
244 | <h2>Summary</h2> | 256 | <h2>Summary</h2> |
245 | <script language="javascript"> | 257 | <script language="javascript"> |
246 | MT.printSummary(); | 258 | MT.printSummary(); |