diff --git a/content/bookmarks.js b/content/bookmarks.js index ab7f845d..3a1fb738 100644 --- a/content/bookmarks.js +++ b/content/bookmarks.js @@ -83,7 +83,8 @@ vimperator.Bookmarks = function () //{{{ if (kw) keywords.push([kw, node.title, node.uri]); - var tags = taggingService.getTagsForURI(ioService.newURI(node.uri, null, null)); + var count = {}; + var tags = taggingService.getTagsForURI(ioService.newURI(node.uri, null, null), count); bookmarks.push([node.uri, node.title, kw, tags]); } } diff --git a/content/events.js b/content/events.js index cd7247b6..31508643 100644 --- a/content/events.js +++ b/content/events.js @@ -604,7 +604,6 @@ vimperator.Events = function () //{{{ evt.noremap = noremap; if (elem.dispatchEvent(evt)) // return true in onEvent to stop feeding keys { - dump("help in mode: " + vimperator.mode + " - " + vimperator.events.toString(evt) + "\n"); vimperator.beep(); return } @@ -850,7 +849,7 @@ vimperator.Events = function () //{{{ var key = vimperator.events.toString(event); if (!key) return true; - dump(key + " in mode: " + vimperator.mode + "\n"); + // dump(key + " in mode: " + vimperator.mode + "\n"); if (vimperator.modes.isRecording) { diff --git a/content/hints.js b/content/hints.js index 5e713939..7783a4d3 100644 --- a/content/hints.js +++ b/content/hints.js @@ -690,7 +690,6 @@ vimperator.Hints = function () //{{{ processHints(followFirst); } } - }; // FIXME: add resize support