codemirror-ipython.js
38 lines
| 1.5 KiB
| application/javascript
|
JavascriptLexer
Matthias BUSSONNIER
|
r11242 | // IPython mode is just a slightly altered Python Mode with `?` beeing a extra | ||
// single operator. Here we define `ipython` mode in the require `python` | ||||
// callback to auto-load python mode, which is more likely not the best things | ||||
// to do, but at least the simple one for now. | ||||
Brian E. Granger
|
r10416 | |||
Matthias BUSSONNIER
|
r18280 | (function(mod) { | ||
if (typeof exports == "object" && typeof module == "object"){ // CommonJS | ||||
Matthias Bussonnier
|
r18289 | mod(require("codemirror/lib/codemirror"), | ||
Matthias BUSSONNIER
|
r18280 | require("codemirror/mode/python/python") | ||
); | ||||
} else if (typeof define == "function" && define.amd){ // AMD | ||||
Matthias Bussonnier
|
r18289 | define(["codemirror/lib/codemirror", | ||
Matthias BUSSONNIER
|
r18280 | "codemirror/mode/python/python"], mod); | ||
} else {// Plain browser env | ||||
mod(CodeMirror); | ||||
} | ||||
})(function(CodeMirror) { | ||||
Matthias BUSSONNIER
|
r12103 | "use strict"; | ||
Matthias Bussonnier
|
r18289 | |||
Matthias BUSSONNIER
|
r11242 | CodeMirror.defineMode("ipython", function(conf, parserConf) { | ||
Jason Grout
|
r17543 | var pythonConf = {}; | ||
for (var prop in parserConf) { | ||||
if (parserConf.hasOwnProperty(prop)) { | ||||
pythonConf[prop] = parserConf[prop]; | ||||
} | ||||
} | ||||
pythonConf.name = 'python'; | ||||
pythonConf.singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!\\?]"); | ||||
Brian E. Granger
|
r17742 | if (pythonConf.version === 3) { | ||
pythonConf.identifiers = new RegExp("^[_A-Za-z\u00A1-\uFFFF][_A-Za-z0-9\u00A1-\uFFFF]*"); | ||||
} else if (pythonConf.version === 2) { | ||||
pythonConf.identifiers = new RegExp("^[_A-Za-z][_A-Za-z0-9]*"); | ||||
} | ||||
Jason Grout
|
r17543 | return CodeMirror.getMode(conf, pythonConf); | ||
Matthias BUSSONNIER
|
r11242 | }, 'python'); | ||
Brian E. Granger
|
r10415 | |||
Matthias BUSSONNIER
|
r11242 | CodeMirror.defineMIME("text/x-ipython", "ipython"); | ||
}) | ||||