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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user