##// END OF EJS Templates
Backport PR #4125: Basic exercise of `ipython [subcommand] -h` and help-all...
Backport PR #4125: Basic exercise of `ipython [subcommand] -h` and help-all for various subcommands. Prompted by the fact that `ip qtconsole -h` and `ip nbconvert -h` are both broken in master. This PR also fixes both. Should be backported to 1.1

File last commit:

r11242:ffa5c991
r12421:e9553a5f
Show More
codemirror-ipython.js
16 lines | 637 B | application/javascript | JavascriptLexer
// 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.
CodeMirror.requireMode('python',function(){
CodeMirror.defineMode("ipython", function(conf, parserConf) {
parserConf.singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!\\?]");
parserConf.name = 'python'
return CodeMirror.getMode(conf, parserConf);
}, 'python');
CodeMirror.defineMIME("text/x-ipython", "ipython");
})