File size: 289 Bytes
745e7ed |
1 2 3 4 5 6 7 8 9 10 11 12 |
define(['codemirror/lib/codemirror'], function (CodeMirror) {
"use strict";
return {
load_ipython_extension : function () {
CodeMirror.extendMode('octave', {
lineComment: '%',
fold: 'indent',
});
}
};
});
|