[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] eww-mode-map doesn't bind TAB on tty.
From: |
Lars Ingebrigtsen |
Subject: |
Re: [PATCH] eww-mode-map doesn't bind TAB on tty. |
Date: |
Wed, 05 Mar 2014 19:10:01 +0100 |
User-agent: |
Gnus/5.13001 (Ma Gnus v0.10) Emacs/24.3.50 (gnu/linux) |
Lars Ingebrigtsen <address@hidden> writes:
> Mario Lang <address@hidden> writes:
>
>> And here is the result of grepping for the pattern in all Emacs Lisp files:
>
> Thanks; I'll replace all those (except the image-dired one)...
Actually... before I do that...
Some modes define both [?\M-\t] (or "\e\t"), which are the same thing, I
think, as well as [backtab]. Same for [tab]. Like:
(define-key map "\t" 'widget-forward)
(define-key map "\e\t" 'widget-backward)
(define-key map [(shift tab)] 'widget-backward)
(put 'widget-backward :advertised-binding [(shift tab)])
(define-key map [backtab] 'widget-backward)
Are there situations where just removing the latter binding is wrong?
I.e., is there a difference between [?\M-\t] and [backtab] that should
be preserved?
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog http://lars.ingebrigtsen.no/
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Lars Ingebrigtsen, 2014/03/04
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Eli Zaretskii, 2014/03/04
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Eli Zaretskii, 2014/03/04
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Lars Ingebrigtsen, 2014/03/05
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Mario Lang, 2014/03/05
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Eli Zaretskii, 2014/03/05
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Lars Ingebrigtsen, 2014/03/05
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty.,
Lars Ingebrigtsen <=
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Eli Zaretskii, 2014/03/05
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Lars Ingebrigtsen, 2014/03/05
- Re: [PATCH] eww-mode-map doesn't bind TAB on tty., Stefan Monnier, 2014/03/07