From 874c4044e53ac9624b2a7d294c4167f2dacea72b Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 24 Dec 2020 02:48:54 -0500 Subject: [PATCH] Ace: Add commented-out language_tools lines in case we want them later We may want this if we enable code completion, though it's a little dumb. (It seems to show suggestions regardless of context.) --- chrome/content/zotero/ace/ace.html | 2 ++ scripts/config.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/chrome/content/zotero/ace/ace.html b/chrome/content/zotero/ace/ace.html index 95315c2a6e..60e40cedfc 100644 --- a/chrome/content/zotero/ace/ace.html +++ b/chrome/content/zotero/ace/ace.html @@ -3,6 +3,8 @@ + + diff --git a/scripts/config.js b/scripts/config.js index 4a83f74962..920efaa561 100644 --- a/scripts/config.js +++ b/scripts/config.js @@ -41,6 +41,8 @@ const symlinkFiles = [ // We only need a couple Ace Editor files '!resource/ace/**/*', 'resource/ace/ace.js', + // Enable for autocomplete + //'resource/ace/ext-language_tools.js', 'resource/ace/ext-searchbox.js', 'resource/ace/keybinding-emacs.js', 'resource/ace/keybinding-vim.js',