[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: "Create New Session" doesn't.



In [emacs-w3m : No.11773] jidanni@xxxxxxxxxxx wrote:
>>>>>> "KY" == Katsumi Yamaoka <yamaoka@xxxxxxx> writes:
KY> Yes, it's not been bound to a keystroke.  Please propose a good
KY> keystroke, if any.
> C-c C-e ! (nEw)

You meant `C-c C-e', not `C-c C-e !' ? ;-)
Ok, I've added `C-c C-e' for the `w3m-goto-new-session-url' command.
I used to have been doing `G C-a C-k RET' for it, but I feel
`C-c C-e' nice.

> Tell us how to bind it today too while we wait...

Technically?  See the info manual: (info "(emacs-w3m)Key Binding")
Eval, or adding to the ~/.emacs-w3m file, this form will work.

(define-key w3m-mode-map "\C-c\C-e" 'w3m-goto-new-session-url)

Otherwise, since we provided the `w3m-ctl-c-map' for the `C-c'-
prefixed commands, we should do it as follows:

(define-key w3m-ctl-c-map "\C-e" 'w3m-goto-new-session-url)

Or common consensus?  Maybe we have no formalities to add default
emacs-w3m key bindings.

> you see it is much less expensive than C-c C-t ...

Agreed.