1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 09:48:00 +01:00

remove old bang version of :ls

This commit is contained in:
Doug Kearns
2008-10-10 11:19:37 +00:00
parent 4c29333f65
commit 1934fbc540
2 changed files with 4 additions and 9 deletions

View File

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

View File

@@ -9,12 +9,10 @@ result many buffer and tab commands are interchangeable.
section:Listing{nbsp}tabs[listing-tabs]
|B| |:tabs| |:ls| |:files| |:buffers|
||:buffers[!]|| +
||:buffers|| +
||B||
________________________________________________________________________________
Show a list of all buffers (=tabs). The special version [c]:buffers![c] opens
the buffer list in a persistent preview window. Call the special version of
this command again to close the window.
Show a list of all buffers (=tabs).
________________________________________________________________________________
section:Opening{nbsp}tabs[listing-tabs]