##// END OF EJS Templates
Merge pull request #6250 from minrk/double-free-widget...
Merge pull request #6250 from minrk/double-free-widget avoid unregistering widget model twice

File last commit:

r17543:a4fee4f8
r17556:2ae68666 merge
Show More
codemirror-ipython.js
22 lines | 851 B | application/javascript | JavascriptLexer
/ IPython / html / static / notebook / js / codemirror-ipython.js
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
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
Updating ipython CM mode.
r10416
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 CodeMirror.requireMode('python',function(){
Matthias BUSSONNIER
"use strict" in most (if not all) our javascript...
r12103 "use strict";
Brian E. Granger
Copying CodeMirror's python mode into place for our ipython mode.
r10415
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 CodeMirror.defineMode("ipython", function(conf, parserConf) {
Jason Grout
Copy codemirror mode configuration instead of changing it...
r17543 var pythonConf = {};
for (var prop in parserConf) {
if (parserConf.hasOwnProperty(prop)) {
pythonConf[prop] = parserConf[prop];
}
}
pythonConf.name = 'python';
pythonConf.singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!\\?]");
return CodeMirror.getMode(conf, pythonConf);
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 }, 'python');
Brian E. Granger
Copying CodeMirror's python mode into place for our ipython mode.
r10415
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 CodeMirror.defineMIME("text/x-ipython", "ipython");
})