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

use literalArg with :buffers

This commit is contained in:
Doug Kearns
2008-11-02 14:39:30 +00:00
parent 441008c624
commit c25b5e2b0b

View File

@@ -479,8 +479,11 @@ function Tabs() //{{{
commands.add(["buffers", "files", "ls", "tabs"], commands.add(["buffers", "files", "ls", "tabs"],
"Show a list of all buffers", "Show a list of all buffers",
function (args) { tabs.list(args.string); }, function (args) { tabs.list(args.literalArg); },
{ argCount: "*" }); {
argCount: "0",
literal: true
});
commands.add(["quita[ll]", "qa[ll]"], commands.add(["quita[ll]", "qa[ll]"],
"Quit " + config.name, "Quit " + config.name,