Commit d0bd2db4 authored by MMesch's avatar MMesch

fix bug with haskell-r mode

parent 650b55f1
...@@ -14,8 +14,8 @@ CodeMirror.defineMode("ihaskell", (config) => { ...@@ -14,8 +14,8 @@ CodeMirror.defineMode("ihaskell", (config) => {
delimStyle: "delimit" delimStyle: "delimit"
}, },
{ {
open: /\[r\||\[rprint\|/, open: /\[r\|/,
close: '|]' , close: /\|\]/ ,
mode: CodeMirror.getMode(config, "text/x-rsrc"), mode: CodeMirror.getMode(config, "text/x-rsrc"),
delimStyle: "delimit"} delimStyle: "delimit"}
); );
......
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