welcome: please sign in
location: Feedly

Feedly-mode

Feedly-mode is a page mode that sets fallthrough bindings for many keys (?, A, J, K, V, a, b, c, g, h, j, k, l, m, n, o, p, r, s, v, v, x).

To use it:

require("feedly");

New tabs in the Background

The v key in feedly opens the article in a new tab but also focuses the new tab. If you'd like to open the new tab in the background (so you could open many articles in a row and then go read them), use the following snippet:

define_key(feedly_keymap, "v", "wait-then-go-back", $fallthrough);

interactive("wait-then-go-back",
    "Wait 150 ms, then move back to the current buffer.",
    function (I) {
        var win = I.window;
        var cur = win.buffers.buffer_list.indexOf(win.buffers.current);
        win.setTimeout(function () {
            win.buffers.current = win.buffers.get_buffer(cur);
        }, 150);
    });

It's an ugly hack, but it works. You may need to change the 150 if your system is very slow.

Conkeror.org: Feedly (last edited 2013-10-27 20:30:19 by BruceConnor)