0-hero's picture
Add files using upload-large-folder tool
9b31431 verified
raw
history blame
289 Bytes
define(['codemirror/lib/codemirror'], function (CodeMirror) {
"use strict";
return {
load_ipython_extension : function () {
CodeMirror.extendMode('octave', {
lineComment: '%',
fold: 'indent',
});
}
};
});