1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 10:57:58 +01:00

remove the space between tags in :bmarks output

This commit is contained in:
Doug Kearns
2008-10-13 03:28:27 +00:00
parent 85dda8da9b
commit b69fdd4d54

View File

@@ -515,8 +515,8 @@ with (liberator) liberator.Bookmarks = function () //{{{
{
url: item.url,
title: item.title,
extra: [['keyword', item.keyword, "hl-Keyword"],
['tags', item.tags.join(', '), "hl-Tag"]
extra: [['keyword', item.keyword, "hl-Keyword"],
['tags', item.tags.join(','), "hl-Tag"]
].filter(function (i) i[1])
} for each (item in items)));
commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE);