Skip to content

Commit

Permalink
Experimentally try setting Ace's auto complete exactMatch flag to true
Browse files Browse the repository at this point in the history
  • Loading branch information
joethephish committed Jun 17, 2024
1 parent e352083 commit 1e29051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/renderer/acesrc/ext-language_tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ var snippetManager = require("./snippets").snippetManager;
var Autocomplete = function() {
this.autoInsert = false;
this.autoSelect = true;
this.exactMatch = false;
this.exactMatch = true;
this.gatherCompletionsId = 0;
this.keyboardHandler = new HashHandler();
this.keyboardHandler.bindKeys(this.commands);
Expand Down

0 comments on commit 1e29051

Please sign in to comment.