From fa173e49acae8be9d9903218c680ce30a7593ebe Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Thu, 3 Dec 2015 16:00:39 +0100 Subject: [PATCH] Support Haxe code. --- plugin/detectindent.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/detectindent.vim b/plugin/detectindent.vim index d903948..173616e 100644 --- a/plugin/detectindent.vim +++ b/plugin/detectindent.vim @@ -32,7 +32,7 @@ if !exists('g:detectindent_verbosity') endif fun! HasCStyleComments() - return index(["c", "cpp", "java", "javascript", "php", "vala"], &ft) != -1 + return index(["c", "cpp", "java", "javascript", "php", "vala", "haxe"], &ft) != -1 endfun fun! IsCommentStart(line)