From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.help Subject: Re: keybindings for c-i and tab Date: Thu, 16 Nov 2006 14:54:46 +0100 Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1163685354 31609 80.91.229.2 (16 Nov 2006 13:55:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 16 Nov 2006 13:55:54 +0000 (UTC) Cc: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 16 14:55:49 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GkhiW-0004c4-Vq for geh-help-gnu-emacs@m.gmane.org; Thu, 16 Nov 2006 14:55:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GkhiV-0007dH-O7 for geh-help-gnu-emacs@m.gmane.org; Thu, 16 Nov 2006 08:55:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gkhi8-0007bm-EY for help-gnu-emacs@gnu.org; Thu, 16 Nov 2006 08:55:24 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gkhi6-0007ab-LF for help-gnu-emacs@gnu.org; Thu, 16 Nov 2006 08:55:23 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gkhi6-0007aW-DT for help-gnu-emacs@gnu.org; Thu, 16 Nov 2006 08:55:22 -0500 Original-Received: from [64.233.166.180] (helo=py-out-1112.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Gkhi6-00056i-Vj for help-gnu-emacs@gnu.org; Thu, 16 Nov 2006 08:55:23 -0500 Original-Received: by py-out-1112.google.com with SMTP id p76so315757pyb for ; Thu, 16 Nov 2006 05:54:47 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NDpHix1LI4/n3mtH3/T2lXM8MhdO5IZXwOSf3fE6jGEE4DeUrbbMyUl6HjcQ6C2iWg2MOZNePS/nsoHNFo/TRH2mYzu6xRYnVGH4s5GkUTz37zHRNXZdRR3hTJ+kF13ADj6vq3GbymkItPfRJwtzLBlYWz9mMAiGQcC/kR93+wk= Original-Received: by 10.35.97.17 with SMTP id z17mr819228pyl.1163685286398; Thu, 16 Nov 2006 05:54:46 -0800 (PST) Original-Received: by 10.35.95.18 with HTTP; Thu, 16 Nov 2006 05:54:44 -0800 (PST) Original-To: Tyler In-Reply-To: Content-Disposition: inline X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:38752 Archived-At: On 11/16/06, Tyler wrote: > However, I've discovered that C-i and tab are mystically linked. So my > macro works for C-i, which I want, but also for tab, which I don't. Nothing mystic: (lookup-key function-key-map [tab]) => [9] > Is there some way to tell emacs not to equate C-i and tab? You can (define-key function-key-map [tab] nil) But then, many functions bound to C-I (like completion, or automatic indentation) won't work with the tab key. You'll have to type C-I. Not very pretty. /L/e/k/t/u