unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Lele Gaifax <lele@metapensiero.it>
To: help-gnu-emacs@gnu.org
Subject: Local variables and mode hooks
Date: Sat, 18 Jul 2015 13:32:24 +0200	[thread overview]
Message-ID: <87615hpupj.fsf@nautilus.nautilus> (raw)

Hi all,

I'm trying to understand how can workaround a problem I'm facing when using
"local variables" I set in a `.dir-locals.el` file.

The problem is that the values are apparently assigned *after* the mode's hook
is run, so they are either "ignored" when I visit the source file, or
"considered" only when I actually modify it.

Let me try to explain.

In my Python sources, using Emacs python.el mode python-mode-hook, I usually
enable both `whitespace-mode` to highlight lines longer than `fill-column` (I
set `whitespace-line-column` to nil) and `flymake-python-pyflakes-load` to
check their syntax with pyflakes.

In a particular project I'm using Python 3, and I want to have a different
`fill-column` to make my coworkers happy, so I created a top level
`.dir-locals.el` file containing

  ((nil . ((fill-column . 75)))
   (python-mode . ((flymake-python-pyflakes-executable . "python3")
                   (flymake-python-pyflakes-extra-arguments . ("-m" "pyflakes")))))

When I visit/create a Python source, its local settings are changed
accordingly, but

a) whitespace highlights lines longer than the *global* value of
   `fill-column`, not its local setting

b) flymake shows syntax errors, because the "initial run" of pyflakes has been
   done with the standard settings, i.e. with its Python 2 variant

To make effect a) disappear I must execute M-: (whitespace-color-on), so it
"reinstall" its font-lock customization, while effect b) goes away as soon as
I change the buffer, triggering a new execution of pyflakes.

Is there some hook that I can use that runs *after* the major mode hooks *and*
the local variables settings got applied, so that I can force whitespace
refresh and trigger a flymake check?

Thanks in advance for any hint,
ciao, lele.
-- 
nickname: Lele Gaifax | Quando vivrò di quello che ho pensato ieri
real: Emanuele Gaifas | comincerò ad aver paura di chi mi copia.
lele@metapensiero.it  |                 -- Fortunato Depero, 1929.




             reply	other threads:[~2015-07-18 11:32 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-18 11:32 Lele Gaifax [this message]
2015-07-18 14:37 ` Local variables and mode hooks Ian Zimmerman
2015-07-28 18:49   ` Lele Gaifax

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=87615hpupj.fsf@nautilus.nautilus \
    --to=lele@metapensiero.it \
    --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).