From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "dmd@3e.org" Newsgroups: gmane.emacs.help Subject: Re: abbrev-mode wizardry needed Date: 18 Apr 2006 18:38:58 -0700 Organization: http://groups.google.com Message-ID: <1145410738.858185.32480@v46g2000cwv.googlegroups.com> References: <1145400330.172655.223820@v46g2000cwv.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1145410917 28155 80.91.229.2 (19 Apr 2006 01:41:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 19 Apr 2006 01:41:57 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Apr 19 03:41: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 1FW1hO-0005tH-4K for geh-help-gnu-emacs@m.gmane.org; Wed, 19 Apr 2006 03:41:42 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FW1hN-0001WF-L7 for geh-help-gnu-emacs@m.gmane.org; Tue, 18 Apr 2006 21:41:41 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!v46g2000cwv.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 17 Original-NNTP-Posting-Host: 71.224.193.21 Original-X-Trace: posting.google.com 1145410745 13206 127.0.0.1 (19 Apr 2006 01:39:05 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 19 Apr 2006 01:39:05 +0000 (UTC) In-Reply-To: <1145400330.172655.223820@v46g2000cwv.googlegroups.com> User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/418 (KHTML, like Gecko) Safari/417.9.2,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: v46g2000cwv.googlegroups.com; posting-host=71.224.193.21; posting-account=YNygTA0AAAC27Fzxt5A53qBThpG901WD Original-Xref: shelby.stanford.edu gnu.emacs.help:138822 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:34440 Archived-At: Answering my own question: (global-set-key (kbd "TAB") 'dabbrev-completion) I can't seem to figure out how to get RET to go to the end of the next line rather than to insert a new line, though. I tried this: (defun end-of-next-line () (interactive) (next-line) (end-of-line)) But that doesn't seem to work.