mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-05 23:34:10 +01:00
More completion stuff
This commit is contained in:
@@ -186,7 +186,7 @@ function Mappings() //{{{
|
||||
|
||||
const opts = {
|
||||
argCount: "2",
|
||||
completer: function (filter) completion.userMapping(filter, modes),
|
||||
completer: function (context) completion.userMapping(context.filter, modes),
|
||||
options: [
|
||||
[["<silent>", "<Silent>"], commands.OPTION_NOARG]
|
||||
],
|
||||
@@ -245,7 +245,7 @@ function Mappings() //{{{
|
||||
if (!found)
|
||||
liberator.echoerr("E31: No such mapping");
|
||||
},
|
||||
{ completer: function (filter) completion.userMapping(filter, modes) });
|
||||
{ completer: function (context) completion.userMapping(context.filter, modes) });
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
|
||||
Reference in New Issue
Block a user