Isaac Witmer | 7 Feb 18:32
Picon
Gravatar

semicolon, f

I'm trying to figure out how ;f works.

According to the documentation:
;f -- f to focus a frame

And on the documentation page (:helpall) it seems like it does focus, but I can't get any other websites to do anything similar.
How is ";f" expected to work? Can you give some examples?

Thanks! This plugin is amazing.

-Isaac

Guido Van Hoecke | 31 Jan 19:18
Picon
Gravatar

:qmarks layout

When listing qmarks with :qmarks the marks are listed in two equal width
columns. The left column shows the one letter mark followed by half
screenwidth white space. This positions the mark so far from the url,
that it is really difficult to unambiguously see what mark goes with
what url.

Please limit the width of the left column some 50 pixels wide, so that
the qmark and the url are close enough to avoid confusion.

Vimperator: 3.3 (created: 2011/11/13 17:32:12)
Firefox:    Mozilla/5.0 (Macintosch; Intel Mac OS X 10.7; rv:9.0.1)
Gecko/20100101 Firefox/9.0.1

Thanks in advance,

Guido

--
QOTD:
	"I've always wanted to work in the Federal Mint.  And then go on
	strike.  To make less money."

http://vanhoecke.org ... and go2 places!
Timo Weingärtner | 13 Jan 20:44
Picon
Gravatar

Feature request: switch to TLS with "gs"

Hi,

Recently I wanted to switch to the TLS secured version of a website. It worked 
by pressing "O" and editing the URL. But there should be an easier way, just 
like there is "gu".

The Command should be "gs" ("gt" was already taken) for switching from http:// 
to https://. There should also be "gS" for switching back to the 
unencrypted/unauthenticated version.

Greetings
Timo
teramako | 11 Jan 03:03
Picon
Gravatar

Vimperator doesn't work on Firefox Nightly (2012-01-10)

Hi

Now vimperator doesn't work on Firefox Nightly since yesterday's update.
Here is a a *temporary* patch [1].
I guess we need fix `utile.Array` for the fundamental solution

[1]: https://gist.github.com/1592202

Thanks.
----
teramako
http://twitter.com/teramako/
http://d.hatena.ne.jp/teramako/
Rob | 10 Jan 23:29
Picon

Yank all buffer uris

Hello,

I've been trying to add in some code to yank the urls of all opened tabs,
but I haven't had any success. I'm a C programmer and completely lost in this
confusing javascript world. I'm getting "undefined" for anything that I try,
when iterating through the array of uris and what not, returned from tabs.js.

I've attached a patch with my attempts, if anyone is interested in taking
a look.

Thanks,
Rob
diff -r 482aa8084e0e common/content/browser.js
--- a/common/content/browser.js	Tue Jan 10 21:24:47 2012 +0900
+++ b/common/content/browser.js	Tue Jan 10 22:24:08 2012 +0000
@@ -100,6 +101,19 @@
             ["y"], "Yank current location to the clipboard",
             function () { util.copyToClipboard(util.losslessDecodeURI(buffer.URL, 'conservative'), true); });

+        mappings.add([modes.NORMAL],
+            ["gya"], "Yank all locations to the clipboard",
+            function () {
+                let allUris = "";
+                let buffers = tabs.get();
+
+                for (var buf in buffers) {
+                    allUris += buf[3] + "\n";
+                }
+
+                util.copyToClipboard(allUris, true);
+            });
+
         // opening websites
         mappings.add([modes.NORMAL],
             ["o"], "Open one or more URLs",
diff -r 482aa8084e0e common/content/tabs.js
--- a/common/content/tabs.js	Tue Jan 10 21:24:47 2012 +0900
+++ b/common/content/tabs.js	Tue Jan 10 22:24:08 2012 +0000
@@ -131,7 +131,8 @@
             let title = browser.contentTitle || "(Untitled)";
             let uri = browser.currentURI.spec;
             let number = i + 1;
-            buffers.push([number, title, uri]);
+            let host = browser.currentURI.host;
+            buffers.push([number, title, uri, host]);
         }
         return buffers;
     },
Claude Rubinson | 15 Dec 22:22

emenu execution for dynamic menu?

The user agent switcher extension dynamically changes the name of its
menu entry (under the Tools menu), with the name of the menu entry
reflecting the currently active user agent switcher (e.g., the menu
entry reads "Default User Agent" or "Firefox 3.5.6").

This makes it difficult to access/script via :emenu, since the name to
match against can change.  Anybody have any other ideas of how to
adjust this extension's settings?  It appears that the Tools menu
entry is the only way.

Thanks,

Claude

无名 | 14 Dec 10:40
Favicon

[PATCH] select previous tab when revmoe a tab(sorry for forgetting to add attachment)

Hi, everybody
I make a little change which select alternative tab for a removing tab. Maybe somebody like it.
Attachment (select-prev-tab-when-revmoe-a-tab.diff): application/octet-stream, 1053 bytes
无名 | 13 Dec 04:30
Favicon

[PATCH] select previous tab when revmoe a tab

Hi, everybody
I make a little change which select alternative tab for a removing tab. Maybe somebody like it.
Jim Green | 8 Dec 03:18
Picon

how to batch open links in new tabs

Hello vimperator community:

I am not sure if anyone has an idea how to batch open a few links in
new tabs with out using the ctrl + click to do so.

sometimes I use F to go to hint and then type in the link number, but
the link number goes away after I  type in the first link number.

Thank you for your help!
Jim.
Ian Munsie | 7 Dec 07:07
Picon

[PATCH] option to hide status panel

Hi All,

This is my first patch to vimperator.

It's a pretty trivial patch to add an option to hide that floating
status panel that was introduced in Firefox 4.

The mouseover functionality to show link targets we already have in
vimperator's statusbar, so the only thing that we miss without the
status panel is the page loading progress.

It mightn't be a bad idea to be able to show the page loading progress
in vimerator's status bar as well - what do you think?

Cheers,
-Ian
Attachment (hide-status-panel.diff): application/octet-stream, 2734 bytes
Zoltan Klinger | 3 Dec 12:18
Picon

[Patch] Fix for issue #632: Find history has been removed since Vimperator 3?

Hi there,

Patch is attached for bug Issue #632 (Find history has been removed since Vimperator 3?)

It seems this bug was introduced in commit 13ad26d0bd97 on line 223 in /common/content/finder.js.

Cheers,
Zoltan

# HG changeset patch
# User Zoltan Klinger <zoltan.klinger <at> gmail.com>
# Date 1322910756 -39600
# Node ID 924fa44dc33a9145ef9e982dcd0c911245263153
# Parent  e446a67984ebd1805bb48de113faade51a88210e
Make search history work again (issue #632)

diff -r e446a67984eb -r 924fa44dc33a common/content/commandline.js
--- a/common/content/commandline.js	Sat Dec 03 21:44:04 2011 +1100
+++ b/common/content/commandline.js	Sat Dec 03 22:12:36 2011 +1100
@@ -645,6 +645,7 @@
         this.show();
         this._commandWidget.focus();

+        this._history = CommandLine.History(this._commandWidget.inputField, (modes.extended ==
modes.EX) ? "command" : "search");
         this._completions = CommandLine.Completions(this._commandWidget.inputField);
     },

diff -r e446a67984eb -r 924fa44dc33a vimperator/NEWS
--- a/vimperator/NEWS	Sat Dec 03 21:44:04 2011 +1100
+++ b/vimperator/NEWS	Sat Dec 03 22:12:36 2011 +1100
@@ -2,6 +2,7 @@
     * version 3.4
     * hinttags fixes for gmail and other apps
     * Pressing Tab works correctly in hint mode when the list of hints has been filtered
+    * Search history is accessible again

 2011-11-13:
     * version 3.3

Gmane