From: Michael Slass <miknrene@drizzle.com>
Subject: Re: best way to add commands to c-mode??....
Date: Wed, 23 Oct 2002 19:46:27 GMT [thread overview]
Message-ID: <m3smyxq6is.fsf@localhost.localdomain> (raw)
In-Reply-To: mailman.1035398914.30879.help-gnu-emacs@gnu.org
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 <RET> m hook <RET>
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 <RET> c.*common to see the names of the variables.
--
Mike Slass
next parent reply other threads:[~2002-10-23 19:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.1035398914.30879.help-gnu-emacs@gnu.org>
2002-10-23 19:46 ` Michael Slass [this message]
2002-10-23 21:01 ` best way to add commands to c-mode?? seberino
2002-10-23 18:46 seberino
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m3smyxq6is.fsf@localhost.localdomain \
--to=miknrene@drizzle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).