aboutsummaryrefslogtreecommitdiff
path: root/js/code-editor/codemirror-ninja
diff options
context:
space:
mode:
authorAnanya Sen2012-06-26 18:06:03 -0700
committerAnanya Sen2012-06-26 18:06:03 -0700
commit4544c22b70dd84a88b98e837746a355e85eabec3 (patch)
tree513bb74600b575a03faba62b5874aa64119a9ade /js/code-editor/codemirror-ninja
parent1d5372534d11c9c1b818ba5e7d67498c731e9ac6 (diff)
downloadninja-4544c22b70dd84a88b98e837746a355e85eabec3.tar.gz
turning off autocompletion since it is interfering typing
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/code-editor/codemirror-ninja')
-rw-r--r--js/code-editor/codemirror-ninja/lib/ninja-simple-hint.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/code-editor/codemirror-ninja/lib/ninja-simple-hint.js b/js/code-editor/codemirror-ninja/lib/ninja-simple-hint.js
index adcafd41..97adfd13 100644
--- a/js/code-editor/codemirror-ninja/lib/ninja-simple-hint.js
+++ b/js/code-editor/codemirror-ninja/lib/ninja-simple-hint.js
@@ -23,7 +23,7 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
23 editor.replaceRange(str, result.from, result.to); 23 editor.replaceRange(str, result.from, result.to);
24 } 24 }
25 25
26 if (completions.length == 1) {insert(completions[0]); return true;} 26 //if (completions.length == 1) {insert(completions[0]); return true;}
27 27
28 // Build the select widget 28 // Build the select widget
29 var complete = document.createElement("div"); 29 var complete = document.createElement("div");