summaryrefslogtreecommitdiff
path: root/public/vendor/codemirror/mode/vb/vb.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/vendor/codemirror/mode/vb/vb.js')
-rwxr-xr-xpublic/vendor/codemirror/mode/vb/vb.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/public/vendor/codemirror/mode/vb/vb.js b/public/vendor/codemirror/mode/vb/vb.js
index 665248f4..d78f91f7 100755
--- a/public/vendor/codemirror/mode/vb/vb.js
+++ b/public/vendor/codemirror/mode/vb/vb.js
@@ -264,8 +264,9 @@ CodeMirror.defineMode("vb", function(conf, parserConf) {
if (trueText.match(closing) || trueText.match(doubleClosing) || trueText.match(middle)) return conf.indentUnit*(state.currentIndent-1);
if(state.currentIndent < 0) return 0;
return state.currentIndent * conf.indentUnit;
- }
+ },
+ lineComment: "'"
};
return external;
});