Commit 90731e9a authored by Andrew Gibiansky's avatar Andrew Gibiansky

Merge pull request #471 from Carreau/ihaskell-mode

set global CM Mode
parents 5e12d478 5f48dea7
......@@ -10,7 +10,7 @@ define(['require',
var onload = function(){
console.log('Kernel haskell kernel.js is loading.');
// add here logic that shoudl be run once per **page load**
// add here logic that should be run once per **page load**
// like adding specific UI, or changing the default value
// of codecell highlight.
......@@ -51,6 +51,12 @@ define(['require',
}
}
});
if(IPython.notebook.set_codemirror_mode){
// this first one will not be necessary in the future
// neither should the loop on all cells above
IPython.notebook.set_codemirror_mode('null')
IPython.notebook.set_codemirror_mode('ihaskell')
}
// Prevent the pager from surrounding everything with a <pre>
IPython.Pager.prototype.append_text = function (text) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment