* w3m - arrow keys
@ 2007-03-21 21:13 Hadron
2007-03-21 21:27 ` Robert D. Crawford
2007-03-21 21:54 ` Tassilo Horn
0 siblings, 2 replies; 6+ messages in thread
From: Hadron @ 2007-03-21 21:13 UTC (permalink / raw)
To: help-gnu-emacs
Is there a way to allow the cursor keys to direct the cursor to freely
wander character by character around text in a w3m buffer as opposed to
jump between forms/links etc?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: w3m - arrow keys
2007-03-21 21:13 w3m - arrow keys Hadron
@ 2007-03-21 21:27 ` Robert D. Crawford
2007-03-21 22:24 ` Hadron
2007-03-21 21:54 ` Tassilo Horn
1 sibling, 1 reply; 6+ messages in thread
From: Robert D. Crawford @ 2007-03-21 21:27 UTC (permalink / raw)
To: help-gnu-emacs
Hadron <hadronquark@gmail.com> writes:
> Is there a way to allow the cursor keys to direct the cursor to freely
> wander character by character around text in a w3m buffer as opposed to
> jump between forms/links etc?
(define-key w3m-mode-map [down] 'next-line)
(define-key w3m-mode-map [up] 'previous-line)
(define-key w3m-mode-map [right] 'forward-char)
(define-key w3m-mode-map [left] backward-char)
--
Robert D. Crawford rdc1x@comcast.net
BOFH excuse #377:
Someone hooked the twisted pair wires into the answering machine.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: w3m - arrow keys
2007-03-21 21:13 w3m - arrow keys Hadron
2007-03-21 21:27 ` Robert D. Crawford
@ 2007-03-21 21:54 ` Tassilo Horn
2007-03-21 23:04 ` David Hansen
[not found] ` <mailman.1230.1174518990.7795.help-gnu-emacs@gnu.org>
1 sibling, 2 replies; 6+ messages in thread
From: Tassilo Horn @ 2007-03-21 21:54 UTC (permalink / raw)
To: help-gnu-emacs
Hadron <hadronquark@gmail.com> writes:
Hi Hadron,
> Is there a way to allow the cursor keys to direct the cursor to freely
> wander character by character around text in a w3m buffer as opposed
> to jump between forms/links etc?
There's an extension which gives info-like keybindings to emacs-w3m.
,----[ eix w3mnav ]
| [I] app-emacs/w3mnav
| Available versions: (~)0.5-r1
| Installed versions: 0.5-r1(04:58:41 PM 12/16/2006)
| Homepage: http://www.neilvandyke.org/w3mnav/
| Description: w3mnav.el provides Info-like navigation keys to the
| w3m Web browser.
`----
Bye,
Tassilo
--
[Emacs] is written in Lisp, which is the only computer language that is
beautiful. -- Neal Stephenson, _In the Beginning was the Command Line_
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: w3m - arrow keys
2007-03-21 21:27 ` Robert D. Crawford
@ 2007-03-21 22:24 ` Hadron
0 siblings, 0 replies; 6+ messages in thread
From: Hadron @ 2007-03-21 22:24 UTC (permalink / raw)
To: help-gnu-emacs
"Robert D. Crawford" <rdc1x@comcast.net> writes:
> Hadron <hadronquark@gmail.com> writes:
>
>> Is there a way to allow the cursor keys to direct the cursor to freely
>> wander character by character around text in a w3m buffer as opposed to
>> jump between forms/links etc?
>
> (define-key w3m-mode-map [down] 'next-line)
> (define-key w3m-mode-map [up] 'previous-line)
> (define-key w3m-mode-map [right] 'forward-char)
> (define-key w3m-mode-map [left] backward-char)
heh, I figured it might come to that. I guess I was hoping for a key
"release" toggle or something.
thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: w3m - arrow keys
2007-03-21 21:54 ` Tassilo Horn
@ 2007-03-21 23:04 ` David Hansen
[not found] ` <mailman.1230.1174518990.7795.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 6+ messages in thread
From: David Hansen @ 2007-03-21 23:04 UTC (permalink / raw)
To: help-gnu-emacs
On Wed, 21 Mar 2007 22:54:49 +0100 Tassilo Horn wrote:
> Hadron <hadronquark@gmail.com> writes:
>
> Hi Hadron,
>
>> Is there a way to allow the cursor keys to direct the cursor to freely
>> wander character by character around text in a w3m buffer as opposed
>> to jump between forms/links etc?
>
> There's an extension which gives info-like keybindings to emacs-w3m.
>
> ,----[ eix w3mnav ]
> | [I] app-emacs/w3mnav
> | Available versions: (~)0.5-r1
> | Installed versions: 0.5-r1(04:58:41 PM 12/16/2006)
> | Homepage: http://www.neilvandyke.org/w3mnav/
> | Description: w3mnav.el provides Info-like navigation keys to the
> | w3m Web browser.
> `----
What's the difference to setting `w3m-key-binding' to 'info?
David
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: w3m - arrow keys
[not found] ` <mailman.1230.1174518990.7795.help-gnu-emacs@gnu.org>
@ 2007-03-22 9:38 ` Tassilo Horn
0 siblings, 0 replies; 6+ messages in thread
From: Tassilo Horn @ 2007-03-22 9:38 UTC (permalink / raw)
To: help-gnu-emacs
David Hansen <david.hansen@gmx.net> writes:
Hi David,
>> ,----[ eix w3mnav ]
>> | [I] app-emacs/w3mnav
>> | Available versions: (~)0.5-r1
>> | Installed versions: 0.5-r1(04:58:41 PM 12/16/2006)
>> | Homepage: http://www.neilvandyke.org/w3mnav/
>> | Description: w3mnav.el provides Info-like navigation keys
>> | to the w3m Web browser.
>> `----
>
> What's the difference to setting `w3m-key-binding' to 'info?
I've tried it out and there seems to be no difference at all. Maybe
w3mnav was merged into emacs-w3m...
Thanks for the tip,
Tassilo
--
My software never has bugs. It just develops random features.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-03-22 9:38 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-21 21:13 w3m - arrow keys Hadron
2007-03-21 21:27 ` Robert D. Crawford
2007-03-21 22:24 ` Hadron
2007-03-21 21:54 ` Tassilo Horn
2007-03-21 23:04 ` David Hansen
[not found] ` <mailman.1230.1174518990.7795.help-gnu-emacs@gnu.org>
2007-03-22 9:38 ` Tassilo Horn
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.