1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-27 09:52:27 +01:00

Merge pull request #176 from zbinlin/patch-2

Fix `No such autocomplete provider: 'history'`
This commit is contained in:
dkearns
2016-09-22 14:09:35 +10:00
committed by GitHub

View File

@@ -203,7 +203,7 @@ var Config = Module("config", ConfigBase, {
const { document } = window;
completion.location = function location(context) {
completion.autocomplete("history", context);
completion.autocomplete("unifiedcomplete", context);
context.title = ["Smart Completions"];
};