From 72e413b3d215b634a2211c9f72a41b37e7b5e520 Mon Sep 17 00:00:00 2001 From: Zheng Chaoping Date: Tue, 30 Aug 2016 15:37:38 +0800 Subject: [PATCH] Fix `No such autocomplete provider: 'history'` In Firefox 49, the 'history' component was removed, so that uses 'unifiedcomplete' here instead. More to see: https://bugzil.la/1223728 --- pentadactyl/content/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pentadactyl/content/config.js b/pentadactyl/content/config.js index f3d1815a..2e2215b5 100644 --- a/pentadactyl/content/config.js +++ b/pentadactyl/content/config.js @@ -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"]; };