From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tyler Newsgroups: gmane.emacs.help Subject: keybindings for c-i and tab Date: Thu, 16 Nov 2006 13:31:58 GMT Organization: Business Internet Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1163684447 28277 80.91.229.2 (16 Nov 2006 13:40:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 16 Nov 2006 13:40:47 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 16 14:40:44 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 1GkhTv-0001Lg-Ax for geh-help-gnu-emacs@m.gmane.org; Thu, 16 Nov 2006 14:40:43 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GkhTu-0004zx-43 for geh-help-gnu-emacs@m.gmane.org; Thu, 16 Nov 2006 08:40:42 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsfeed.news.ucla.edu!nrc-news.nrc.ca!newsflash.concordia.ca!News.Dal.Ca!ursa-nb00s0.nbnet.nb.ca!53ab2750!not-for-mail User-Agent: Icedove 1.5.0.7 (X11/20061013) Original-Newsgroups: gnu.emacs.help Original-Lines: 17 Original-NNTP-Posting-Host: 142.177.142.129 Original-X-Complaints-To: abuse@aliant.net Original-X-Trace: ursa-nb00s0.nbnet.nb.ca 1163683918 142.177.142.129 (Thu, 16 Nov 2006 09:31:58 AST) Original-NNTP-Posting-Date: Thu, 16 Nov 2006 09:31:58 AST Original-Xref: shelby.stanford.edu gnu.emacs.help:143134 Original-To: help-gnu-emacs@gnu.org 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:38751 Archived-At: Hi, I'm working in Auctex mode, and I want to bind tex-font italics to C-i. I couldn't figure out the set-key code directly, but I did manage to get a macro to work: (fset 'italicizer "\C-c\C-f\C-i") (global-set-key "\C-i" 'italicizer) 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. Is there some way to tell emacs not to equate C-i and tab? Thanks! Tyler