I love it when I'm over thinking things rather than
under...
On Mon, May 5, 2008 at 2:00 PM, <conkeror-request mozdev.org> wrote:
> Send Conkeror mailing list submissions to
> conkeror mozdev.org
>
> To subscribe or unsubscribe via the World Wide Web,
visit
> http
s://www.mozdev.org/mailman/listinfo/conkeror
> or, via email, send a message with subject or body
'help' to
> conkeror-request mozdev.org
>
> You can reach the person managing the list at
> conkeror-owner mozdev.org
>
> When replying, please edit your Subject line so it is
more specific
> than "Re: Contents of Conkeror digest..."
>
> Today's Topics:
>
> 1. Re: How does one go about getting custom bindings
going?
> (John J Foerch)
>
>
> ---------- Forwarded message ----------
> From: John J Foerch <jjfoerch earthlink.net>
> To: conkeror mozdev.org
> Date: Sun, 04 May 2008 15:57:20 -0400
> Subject: Re: [Conkeror] How does one go about getting
custom bindings going?
> A.W. <gzeusmants gmail.com> writes:
> > Specifically I'm trying to get M-f1 through M-f12
to open specific webpages.
> > I have defined working functions for them in my
conkerorrc(based on
> > the 'tips' function for binding to a key, but
without the key, as it
> > didn't seem to take "M-f1" as an
option.
> >
> > I seem to be doing the binding wrong, not
surprising as I know no javascript.
> >
> > I put this in the file today, and I finally got
the bugs out that were
> > breaking the whole rc:
> >
> > /**
> > * Setting blag functions, ending RSS reader
forever.
> > */
> > create_link_shortcut("open-lse-pipe",
> > "http://pipes.yahoo.com/pipes/pipe.info?_i
d=3PHwctj52xGg02vB6kjTQA",
> > "");
> >
create_link_shortcut("open-ubuntuplanet", "http://planet.ubuntu.c
om", "");
> > create_link_shortcut("open-kdeplanet",
"http://planetkde.org"
, "");
> > create_link_shortcut("open-gizmodo",
"http://www.gizmodo.com&q
uot;, "");
> > create_link_shortcut("open-engadget",
"http://www.engadget.com
", "");
> > create_link_shortcut("open-dansface",
"http://droe82.stum
bleupn.com", "");
> >
create_link_shortcut("open-gaijinsmash", "http://www.gaijinsma
sh.net", "");
> > create_link_shortcut("open-xkcd",
"http://www.xkcd.net"
a>, "");
> >
create_link_shortcut("open-questionablecontent",
> > "http://www.q
uestionablecontent.net", "");
> > create_link_shortcut("open-fanboys",
"http://www.fanboy
s-online.com", "");
> > create_link_shortcut("open-xkcdblag",
"http://blag.xkcd.com"
, "");
> >
create_link_shortcut("open-awesomenews",
> > "http://awesome
.naquadah.org/news", "");
> > /**
> > * WORK?? Is this line a waste of time? What am I
doing?
> > */
> >
> > require("bindings/default/global.js");
> >
> > /**
> > * Trying to make all those blags work with M-fx,
failing.
> > */
> > define_keymap("default_blag_keymap",
$parent = default_base_keymap);
> >
> > define_key(default_blag_keymap, "M-f1",
"open-lse-pipe");
> > define_key(default_blag_keymap, "M-f2",
"open-ubuntuplanet");
> > define_key(default_blag_keymap, "M-f3",
"open-kdeplanet");
> > define_key(default_blag_keymap, "M-f4",
"open-gizmodo");
> > define_key(default_blag_keymap, "M-f5",
"open-engadget");
> > define_key(default_blag_keymap, "M-f6",
"open-dansface");
> > define_key(default_blag_keymap, "M-f7",
"open-gaijinsmash");
> > define_key(default_blag_keymap, "M-f8",
"open-xkcd");
> > define_key(default_blag_keymap, "M-f9",
"open-questionablecontent");
> > define_key(default_blag_keymap,
"M-f10", "open-fanboys");
> > define_key(default_blag_keymap,
"M-f11", "open-xkcdblag");
> > define_key(default_blag_keymap,
"M-f12", "open-awesomenews");
>
> It's simpler than all that...
>
> create_link_shortcut("open-engadget",
"http://www.engadget.com
", "");
> define_key (content_buffer_normal_keymap,
"M-f1", "open-engadget");
>
> --
> John Foerch
>
>
>
> _______________________________________________
> Conkeror mailing list
> Conkeror mozdev.org
> http
s://www.mozdev.org/mailman/listinfo/conkeror
>
>
_______________________________________________
Conkeror mailing list
Conkeror mozdev.org
http
s://www.mozdev.org/mailman/listinfo/conkeror
|