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

Re: let cursor move anywhere on the screen, even past end of line



In [emacs-w3m:12864]
On Wed, 27 Dec 2017 06:57:57 +0800, 積丹尼さん wrote:
> I (also) wish the arrow keys could move into blank space at the ends of
> lines, in both emacs-w3m and w3m. So one could move the cursor anywhere
> on the screen.

Well, is what you want such as this?

(define-key w3m-mode-map [down] 'next-line)
(define-key w3m-mode-map [left] 'left-char)
(define-key w3m-mode-map [right] 'right-char)
(define-key w3m-mode-map [up] 'previous-line)

`even past end of line' (if there is no object) can't be done as
any Emacs command can't do that, I think.