1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-15 07:55:45 +01:00

Dont use argCount with literal. Use the default favicon in :ls

This commit is contained in:
Kris Maglione
2008-11-28 12:52:09 +00:00
parent 8a69d2f3a1
commit d25867e7b5
14 changed files with 45 additions and 73 deletions

View File

@@ -234,7 +234,7 @@ function IO() //{{{
{
argCount: "+", // FIXME: "?"
completer: function (context) completion.file(context, true),
literal: true
literal: 0
});
// NOTE: this command is only used in :source
@@ -366,7 +366,7 @@ function IO() //{{{
{
bang: true,
completer: function (context) completion.shellCommand(context),
literal: true
literal: 0
});
/////////////////////////////////////////////////////////////////////////////}}}