From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85822 Path: news.gmane.org!not-for-mail From: Igor Sosa Mayor Newsgroups: gmane.emacs.gnus.general Subject: Re: Best method to disable TAB in topic-mode? Date: Sun, 01 Mar 2015 08:05:04 +0100 Message-ID: <87zj7x42qn.fsf@pedroche.home> References: <87ioem5dpf.fsf@pedroche.home> <87wq32w1ml.fsf@igel.home> <87a8zy53k2.fsf@pedroche.home> <87d24tpgfl.fsf@ericabrahamsen.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1425193426 28649 80.91.229.3 (1 Mar 2015 07:03:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 1 Mar 2015 07:03:46 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M34061@lists.math.uh.edu Sun Mar 01 08:03:34 2015 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YRxuX-0006qS-KT for ding-account@gmane.org; Sun, 01 Mar 2015 08:03:33 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1YRxtk-00050O-VU; Sun, 01 Mar 2015 01:02:45 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YRxtW-000501-2p for ding@lists.math.uh.edu; Sun, 01 Mar 2015 01:02:30 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1YRxtU-0002fc-Bh for ding@lists.math.uh.edu; Sun, 01 Mar 2015 01:02:29 -0600 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1YRxtR-0002Lt-DL for ding@gnus.org; Sun, 01 Mar 2015 08:02:25 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YRxtP-0006fC-Ty for ding@gnus.org; Sun, 01 Mar 2015 08:02:24 +0100 Original-Received: from 95.90.214.202 ([95.90.214.202]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 01 Mar 2015 08:02:23 +0100 Original-Received: from joseleopoldo1792 by 95.90.214.202 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 01 Mar 2015 08:02:23 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 12 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 95.90.214.202 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) Cancel-Lock: sha1:ZzjVW7SYfIOgwjsMs6KVbZ/oRls= X-Spam-Score: -0.6 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85822 Archived-At: Eric Abrahamsen 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!