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

Cleanup/fix buffer.shiftFrameFocus. Other misc cleanup/fixes.

This commit is contained in:
Kris Maglione
2010-11-14 22:17:17 -05:00
parent 8ac3b09255
commit 2518a3423f
7 changed files with 38 additions and 60 deletions

View File

@@ -364,11 +364,11 @@ const Bookmarks = Module("bookmarks", {
return dactyl.open(items.map(function (i) i.url), dactyl.NEW_TAB);
if (filter.length > 0 && tags.length > 0)
dactyl.echoerr("E283: No bookmarks matching tags: " + tags.quote() + " and string: " + filter.quote());
dactyl.echoerr("E283: No bookmarks matching tags: " + tags.map(String.quote) + " and string: " + filter.quote());
else if (filter.length > 0)
dactyl.echoerr("E283: No bookmarks matching string: " + filter.quote());
else if (tags.length > 0)
dactyl.echoerr("E283: No bookmarks matching tags: " + tags.quote());
dactyl.echoerr("E283: No bookmarks matching tags: " + tags.map(String.quote));
else
dactyl.echoerr("No bookmarks set");
return null;