From 9bed019fee9634d728602959e3e4e60aef859526 Mon Sep 17 00:00:00 2001 From: nightwing Date: Wed, 29 May 2013 16:08:57 +0400 Subject: [PATCH] prefer // comment in php --- lib/ace/mode/php.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/mode/php.js b/lib/ace/mode/php.js index 87b70cbd..8e3ecd6c 100644 --- a/lib/ace/mode/php.js +++ b/lib/ace/mode/php.js @@ -70,7 +70,7 @@ oop.inherits(Mode, TextMode); ); - this.lineCommentStart = ["#", "//"]; + this.lineCommentStart = ["//", "#"]; this.blockComment = {start: "/*", end: "*/"}; this.getNextLineIndent = function(state, line, tab) {