unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: John Mastro <john.b.mastro@gmail.com>
To: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Cc: Colin Yates <colin.yates@gmail.com>
Subject: Re: Doing things only in a particular mode
Date: Mon, 24 Aug 2015 10:32:48 -0700	[thread overview]
Message-ID: <CAOj2CQQnM+MP2yW3_=fQxi9mAtmKhZERqdi21pEvGWD-KcGi_g@mail.gmail.com> (raw)
In-Reply-To: <m2lhd0hcr2.fsf@gmail.com>

> Do you have any idea about the more generic emacs question?
> Specifically, how do I achieve the following:
>
> (when (= MAJOR_MODE "mu4e-headers")
>   (do this)
>   (and do that))

There will usually be a `foo-mode-hook' for any mode `foo', so you would
create a function to perform you configuration and add it to that hook.

There's also an `after-change-major-mode-hook', where you can add
functions that you want to be run after the major mode changes. However,
in practice I've never needed to use it.

As an aside, the value of `major-mode' is a symbol, so `=' won't work
for the equality comparison (unlike in Clojure, `=' isn't very
polymorphic; it can only compare numbers or markers). Either `eq'
(equivalent to Clojure's `identical?') or `equal' (the closest to
Clojure's `=', though not equivalent) would work.

-- 
john



  reply	other threads:[~2015-08-24 17:32 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.0.1440427806.19573.help-gnu-emacs@gnu.org>
2015-08-24 15:18 ` Doing things only in a particular mode Dan Espen
2015-08-24 16:28   ` Colin Yates
2015-08-24 17:32     ` John Mastro [this message]
2015-08-25  1:30     ` Emanuel Berg
2015-08-25  1:55       ` Emanuel Berg
2015-08-27  5:17       ` Marcin Borkowski
2015-08-24 17:18 ` Joost Kremers
2015-08-24 17:30   ` Colin Yates
2015-08-24 19:47   ` Jorge A. Alfaro-Murillo
2015-08-26 13:54     ` Stefan Monnier
2015-08-26 19:35       ` Jorge A. Alfaro-Murillo
2015-08-26 20:09         ` Jorge A. Alfaro-Murillo
2015-08-27 13:53         ` Stefan Monnier
2015-08-24 14:49 Colin Yates

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='CAOj2CQQnM+MP2yW3_=fQxi9mAtmKhZERqdi21pEvGWD-KcGi_g@mail.gmail.com' \
    --to=john.b.mastro@gmail.com \
    --cc=colin.yates@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /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).