[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Two last questions (frames/key bindings)
>>>>> In [emacs-w3m : No.07059]
>>>>> Tassilo Horn <heimdall@uni-koblenz.de> wrote:
> 1. What about frames? Emacs-w3m doesn't display them whereas w3m in a
> terminal does.
> Do I really have to use w3mmee like the FAQ says?
Unfortunately yes, AFAIK. Only w3mmee does it.
> 2. Is it possible to get another keymap? I would like to use the cursor
> keys to move the point and C-p and C-n to visit the page
> before/after. Now it's the other way round...
> I've found w3m-key-binding but after I changed it to info I couldn't
> find any difference.
There are only two set of ready-made keymaps. One is Info-like
map, the other is Lynx-like map which is the default. It is
possible to change each key binding. The following example may
be your favorites (they should be put into ~/.emacs-w3m.el file):
(define-key w3m-mode-map "\C-p" 'w3m-view-previous-page)
(define-key w3m-mode-map "\C-n" 'w3m-view-next-page)
(define-key w3m-mode-map [down] 'next-line)
(define-key w3m-mode-map [left] 'backward-char)
(define-key w3m-mode-map [right] 'forward-char)
(define-key w3m-mode-map [up] 'previous-line)