summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vimperatorrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/vimperatorrc b/vimperatorrc
index 2b2a60c..13d6a1e 100644
--- a/vimperatorrc
+++ b/vimperatorrc
@@ -241,3 +241,15 @@ javascript <<EOF
.insertBefore(feedPanel, document.getElementById("security-button"));
})();
EOF
+
+" Show the bookmark-button in the statusbar
+javascript <<EOF
+(function(){
+ var bookPanel = document.createElement("statusbarpanel");
+ bookPanel.setAttribute("id", "book-panel-clone");
+ bookPanel.appendChild(document.getElementById("star-button"));
+ bookPanel.firstChild.setAttribute("style", "padding: 0; max-height: 16px;");
+ document.getElementById("status-bar")
+ .insertBefore(bookPanel, document.getElementById("security-button"));
+})();
+EOF