1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 22:54:12 +01:00

Add completions to :ha! >foo

This commit is contained in:
Kris Maglione
2012-06-16 19:20:00 -04:00
parent 88e5b34dec
commit 281778066c

View File

@@ -1616,6 +1616,10 @@ var Buffer = Module("Buffer", {
{
argCount: "?",
bang: true,
completer: function (context, args) {
if (args.bang && /^>/.test(context.filter))
context.fork("file", 1, modules.completion, "file");
},
literal: 0
});