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

Fix spurious extra quotation marks in completion output.

This commit is contained in:
Kris Maglione
2010-09-28 09:34:23 -04:00
parent 37d94aaed9
commit 67eee9ad89

View File

@@ -1194,8 +1194,8 @@ const Commands = Module("commands", {
"": quote("", "|\\\\\\s'\"")
};
Commands.complQuote = {
'"': ['"', Commands.quoteArg['"'], '"'],
"'": ["'", Commands.quoteArg["'"], "'"],
'"': ['"', quote("", Commands.quoteArg['"'].list), '"'],
"'": ["'", quote("", Commands.quoteArg["'"].list), "'"],
"": ["", Commands.quoteArg[""], ""]
};