Gnus development mailing list
 help / color / mirror / Atom feed
* Best method to disable TAB in topic-mode?
@ 2015-02-28 14:10 Igor Sosa Mayor
  2015-02-28 14:29 ` Andreas Schwab
  0 siblings, 1 reply; 5+ messages in thread
From: Igor Sosa Mayor @ 2015-02-28 14:10 UTC (permalink / raw)
  To: ding

Hi,

I'm really a bit desperate because I am not able to achieve a very easy
task: I want to disable TAB in topic-mode, because I am all the time
indenting the topics by mistakenly pressing TAB...

What is the best method to disable the key? I have tried a lot of
combinations such as:
(define-key gnus-topic-mode-map (kbd "[tab]")  nil)
(define-key gnus-topic-mode-map (kbd "<tab>")  nil)
etc.

with no success...

Any hint? Many thanks in advance!


-- 
:: Igor Sosa Mayor     :: joseleopoldo1792@gmail.com ::
:: GnuPG: 0x1C1E2890   :: http://www.gnupg.org/      ::
:: jabberid: rogorido  ::                            ::




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Best method to disable TAB in topic-mode?
  2015-02-28 14:10 Best method to disable TAB in topic-mode? Igor Sosa Mayor
@ 2015-02-28 14:29 ` Andreas Schwab
  2015-02-28 17:49   ` Igor Sosa Mayor
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Schwab @ 2015-02-28 14:29 UTC (permalink / raw)
  To: Igor Sosa Mayor; +Cc: ding

Igor Sosa Mayor <joseleopoldo1792@gmail.com> writes:

> Any hint? Many thanks in advance!

Either "\t" or (kbd "TAB").

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Best method to disable TAB in topic-mode?
  2015-02-28 14:29 ` Andreas Schwab
@ 2015-02-28 17:49   ` Igor Sosa Mayor
  2015-03-01  3:03     ` Eric Abrahamsen
  0 siblings, 1 reply; 5+ messages in thread
From: Igor Sosa Mayor @ 2015-02-28 17:49 UTC (permalink / raw)
  To: ding

Andreas Schwab <schwab@linux-m68k.org> writes:

> Either "\t" or (kbd "TAB").

thanks for your answer. But no success...




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Best method to disable TAB in topic-mode?
  2015-02-28 17:49   ` Igor Sosa Mayor
@ 2015-03-01  3:03     ` Eric Abrahamsen
  2015-03-01  7:05       ` Igor Sosa Mayor
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Abrahamsen @ 2015-03-01  3:03 UTC (permalink / raw)
  To: ding

Igor Sosa Mayor <joseleopoldo1792@gmail.com> writes:

> Andreas Schwab <schwab@linux-m68k.org> writes:
>
>> Either "\t" or (kbd "TAB").
>
> thanks for your answer. But no success...

I was annoyed by the same thing, and here's how I solved it:

(eval-after-load "gnus-topic"
  '(progn
     (define-key gnus-topic-mode-map [tab] nil)
     (define-key gnus-topic-mode-map "\C-i" nil)))

Works fine here!




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Best method to disable TAB in topic-mode?
  2015-03-01  3:03     ` Eric Abrahamsen
@ 2015-03-01  7:05       ` Igor Sosa Mayor
  0 siblings, 0 replies; 5+ messages in thread
From: Igor Sosa Mayor @ 2015-03-01  7:05 UTC (permalink / raw)
  To: ding

Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> I was annoyed by the same thing, and here's how I solved it:
>
> (eval-after-load "gnus-topic"
>   '(progn
>      (define-key gnus-topic-mode-map [tab] nil)
>      (define-key gnus-topic-mode-map "\C-i" nil)))
>
> Works fine here!

exactly! many thanks!




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-03-01  7:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-28 14:10 Best method to disable TAB in topic-mode? Igor Sosa Mayor
2015-02-28 14:29 ` Andreas Schwab
2015-02-28 17:49   ` Igor Sosa Mayor
2015-03-01  3:03     ` Eric Abrahamsen
2015-03-01  7:05       ` Igor Sosa Mayor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).