Emacs Per File Customization

后端 未结 2 1756
渐次进展
渐次进展 2021-02-06 14:14

I have an Emacs Lisp file with custom macros I want fontified and indented differently. The code looks like:

(defmacro* when-let ((var value) &rest body)
           


        
相关标签:
2条回答
  • 2021-02-06 14:48

    You can specify elisp for evaluation in file local variables1 by specifying an eval: value (the documentation says 'Eval:' but only lower-case 'eval:' seems to work). e.g.:

    ;;; Local Variables:
    ;;; mode: outline-minor
    ;;; eval: (hide-body)
    ;;; End:
    

    As a security measure, Emacs will ask you for confirmation whenever it sees a value it does not already recognise as safe. If you tell it to remember it permanently, it writes the value to safe-local-variable-values in the (custom-set-variables) section of your init file.

    Note that the above example of enabling a minor mode is deprecated (the mode local variable is for major modes only), so we need to re-write it as another evaluated form, in which we call the minor mode function.

    If you need to evaluate multiple forms, you can either specify multiple eval values, which will be evaluated in order:

    ;;; Local Variables:
    ;;; eval: (outline-minor-mode 1)
    ;;; eval: (hide-body)
    ;;; End:
    

    Or alternatively, just use progn:

    ;;; Local Variables:
    ;;; eval: (progn (outline-minor-mode 1) (hide-body))
    ;;; End:
    

    The difference is that the latter would be considered a single value for the purposes of safe-local-variable-values, whereas with multiple eval values each one is considered independently.

    1 C-hig (elisp) File Local Variables RET

    0 讨论(0)
  • 2021-02-06 15:06

    For identing your when-let macro, you could use the indent declaration:

    (defmacro* when-let ((var value) &rest body)
      (declare (indent 1))
      `(let ((,var ,value))
         (when ,var ,@body)))
    

    look at the info node (elisp)Indenting Macros for more information about this. I don't know about a similar things for fontification.

    0 讨论(0)
提交回复
热议问题