1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 09:24:12 +01:00

Don't hide command errors in tab modifier commands.

--HG--
extra : rebase_source : 05de0074fabbae061e14c10073f0b4648d72709f
This commit is contained in:
Doug Kearns
2011-06-27 15:51:11 +10:00
parent 495dd8d9d9
commit 78a1e62ca2
2 changed files with 17 additions and 6 deletions

View File

@@ -328,9 +328,10 @@ var tests = {
multiOutput: [""]
},
keepalt: {
error: [""],
error: ["", "some-nonexistent-command"],
noOutput: ["js ''"],
anyOutput: ["echo 'foo'"]
anyOutput: ["echo 'foo'"],
completions: [["", hasItems]]
},
let: {}, // Deprecated. Fuck it.
listcommands: {
@@ -671,10 +672,20 @@ var tests = {
["-index=", hasNItems(2)]
]
},
tab: {},
tab: {
error: ["", "some-nonexistent-command"],
noOutput: ["js ''"],
anyOutput: ["echo 'foo'"],
completions: [["", hasItems]]
},
tabattach: {},
tabdetach: {},
tabdo: {},
tabdo: {
error: ["", "some-nonexistent-command"],
noOutput: ["js ''"],
anyOutput: ["echo 'foo'"],
completions: [["", hasItems]]
},
tabduplicate: {},
tablast: {},
tabmove: {