From b69fdd4d542544cebdaac968c47c8c42a1ec2130 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 13 Oct 2008 03:28:27 +0000 Subject: [PATCH] remove the space between tags in :bmarks output --- content/bookmarks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/bookmarks.js b/content/bookmarks.js index 63fe9a13..4ba88b4e 100644 --- a/content/bookmarks.js +++ b/content/bookmarks.js @@ -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);