mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 18:32:25 +01:00
Fix <Tab> completion
This commit is contained in:
@@ -820,7 +820,7 @@ liberator.CommandLine = function () //{{{
|
|||||||
[completionStartIndex, completions] = res;
|
[completionStartIndex, completions] = res;
|
||||||
|
|
||||||
// sort the completion list
|
// sort the completion list
|
||||||
if (liberator.options["wildoptions"].has("sort"))
|
if (liberator.options.get("wildoptions").has("sort"))
|
||||||
completions.sort(function (a, b) String.localeCompare(a[0], b[0]));
|
completions.sort(function (a, b) String.localeCompare(a[0], b[0]));
|
||||||
|
|
||||||
completionList.setItems(completions);
|
completionList.setItems(completions);
|
||||||
|
|||||||
Reference in New Issue
Block a user