From c3491f4855925a1dc73cede0db8cc274e6c0a40e Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 22 Aug 2013 15:29:17 +0400 Subject: [PATCH] fix merge conflict --- lib/ace/mode/text.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ace/mode/text.js b/lib/ace/mode/text.js index ee50d552..4b7312dc 100644 --- a/lib/ace/mode/text.js +++ b/lib/ace/mode/text.js @@ -359,9 +359,6 @@ var Mode = function() { this.getCompletions = function(state, session, pos, prefix) { var keywords = this.$keywordList || []; - keywords = keywords.filter(function(w) { - return w.lastIndexOf(prefix, 0) == 0; - }); return keywords.map(function(word) { return { name: word,