Added comment settings to add comment shortcut (ctrl+/)

This commit is contained in:
Ryan Griffith 2013-04-05 14:46:53 -04:00
commit a22dda79fc

View file

@ -54,7 +54,8 @@ var Mode = function() {
oop.inherits(Mode, TextMode);
(function() {
// Extra logic goes here.
this.lineCommentStart = "##";
this.blockComment = {start: "#*", end: "*#"};
}).call(Mode.prototype);
exports.Mode = Mode;