From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: seberino@spawar.navy.mil Newsgroups: gmane.emacs.help Subject: Re: best way to add commands to c-mode??.... Date: Wed, 23 Oct 2002 14:01:09 -0700 Sender: help-gnu-emacs-admin@gnu.org Message-ID: <20021023140109.A21193@spawar.navy.mil> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035407703 21706 80.91.224.249 (23 Oct 2002 21:15:03 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 21:15:03 +0000 (UTC) Cc: help-gnu-emacs@gnu.org Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 184SqA-0005d5-00 for ; Wed, 23 Oct 2002 23:14:59 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 184Spk-00009S-00; Wed, 23 Oct 2002 17:14:32 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 184Sct-0006Tt-00 for help-gnu-emacs@gnu.org; Wed, 23 Oct 2002 17:01:15 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 184Scq-0006Op-00 for help-gnu-emacs@gnu.org; Wed, 23 Oct 2002 17:01:14 -0400 Original-Received: from seberino.spawar.navy.mil ([128.49.22.159]) by monty-python.gnu.org with esmtp (Exim 4.10) id 184Scp-0006JN-00 for help-gnu-emacs@gnu.org; Wed, 23 Oct 2002 17:01:11 -0400 Original-Received: from seberino by seberino.spawar.navy.mil with local (Exim 4.10) id 184Scn-0005Wq-00; Wed, 23 Oct 2002 14:01:09 -0700 Original-To: Michael Slass Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from miknrene@drizzle.com on Wed, Oct 23, 2002 at 07:46:27PM +0000 Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:2864 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2864 Michael Thanks for the help. I noticed that my .emacs doesn't launch my c-mode config function via c-mode-hook but rather from this beast... (setq auto-mode-alist '(("\\.c\\'" . cs-c-mode) ("\\.C\\'" . cs-c-mode) ("\\.cpp\\'" . cs-c-mode) ("\\.h\\'" . cs-c-mode) ("\\.java\\'" . cs-c-mode))) Is the same, worse or better??? I wanted to make my own simple language mode and somewhere I discovered that auto-mode-alist would point certain file suffixes to my c-mode config function. Chris On Wed, Oct 23, 2002 at 07:46:27PM +0000, Michael Slass wrote: > seberino@spawar.navy.mil writes: > > >Is this the simplest way to add commands to c-mode?... > > > >(defun cs-c-mode() (interactive) > > (c-mode) > > (c-set-style "K&R") > > (setq c-basic-offset 3) > > (local-set-key "\C-d" 'cs-kill-line)) > > > > > >Did I have to define a new mode/function to add > >these 3 commands?? > > > > The most common paradigm is > > 1) define a function that does all your c-mode customizations > 2) add your function to one of the c-mode hooks > > > (defun cs-c-mode-setup () > (c-set-style "K&R") > (setq c-basic-offset 3) > (local-set-key "\C-d" 'cs-kill-line)) > > > (add-hook 'c-mode-hook 'cs-c-mode-setup) > > > One of the last things c-mode does when it starts is to run all the > functions listed in the c-mode-hook variable. > > > Check out the documentation for hooks in the emacs manual > > C-h i m emacs m hook > > which talks about exactly what you're trying to do. > > > Also, if you're using a newer emacs, there is another hook that's used > for all c-like modes. Once you've loaded c-mode, try > M-x apropos c.*common to see the names of the variables. > > -- > Mike Slass > _______________________________________________ > Help-gnu-emacs mailing list > Help-gnu-emacs@gnu.org > http://mail.gnu.org/mailman/listinfo/help-gnu-emacs -- _______________________________________ Dr. Christian Seberino SPAWAR Systems Center San Diego Code 2363 49590 Lassing Road, Room A339 San Diego, CA 92152-6147 U.S.A. Phone: (619) 553-7940 Fax: (619) 553-1269 Email: seberino@spawar.navy.mil _______________________________________