From a22dda79fc72f1350427d35269d233015ee6b787 Mon Sep 17 00:00:00 2001 From: Ryan Griffith Date: Fri, 5 Apr 2013 14:46:53 -0400 Subject: [PATCH] Added comment settings to add comment shortcut (ctrl+/) --- lib/ace/mode/velocity.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ace/mode/velocity.js b/lib/ace/mode/velocity.js index ec1adfa5..feb53742 100644 --- a/lib/ace/mode/velocity.js +++ b/lib/ace/mode/velocity.js @@ -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;