diff --git a/chrome/content/vimperator/bookmarks.js b/chrome/content/vimperator/bookmarks.js
index f506a132..9c3ae7bd 100644
--- a/chrome/content/vimperator/bookmarks.js
+++ b/chrome/content/vimperator/bookmarks.js
@@ -300,7 +300,7 @@ function Bookmarks() //{{{
match_tags = str.match(re_tags);
if (match_tags != null)
{
- str = match_tags[match_tags.length-1]; // the last captured parenthesis is the rest of the string
+ str = match_tags[match_tags.length - 1]; // the last captured parenthesis is the rest of the string
tags = match_tags[3].split(",");
res.tags = res.tags.concat(tags);
}
@@ -382,7 +382,7 @@ function History() //{{{
var builder = historytree.builder.QueryInterface(Components.interfaces.nsIXULTreeBuilder);
var count = historytree.view.rowCount;
- for (var i = count-1; i >= 0; i--)
+ for (var i = count - 1; i >= 0; i--)
{
var res = builder.getResourceAtIndex(i);
var url = res.Value;
@@ -743,7 +743,7 @@ function Marks() //{{{
}
}
- var list = "
| mark | line | col | file |
";
+ var list = "| mark | line | col | file |
";
for (var i = 0; i < marks.length; i++)
{
list += ""
@@ -838,7 +838,7 @@ function QuickMarks() //{{{
}
}
- var list = "| QuickMark | URL |
";
+ var list = "| QuickMark | URL |
";
for (var i = 0; i < marks.length; i++)
{
list += "| " + marks[i][0] + " | " + marks[i][1] + " |
";