Files
.emacs.d/modules/tools/siren-helm-make.el
Jim Myhrberg fe6a4e7ce5 fix(elisp): add lexical-binding comment to all files to suppress new Emacs 31 warnings
I've set `lexical-binding` to `nil` in all Emacs Lisp files to suppress
the warnings introduced in Emacs 31 requiring all elisp files to have a
`lexical-binding` comment.

This retains the default behavior of dynamic binding when no
`lexical-binding` comment is present. With it set to `t` across the
board, various things break, and fixing those is a task for another day.
2025-06-29 12:23:03 +01:00

25 lines
527 B
EmacsLisp
Executable File

;;; siren-helm-make.el --- jimeh's Emacs Siren: helm-make configuration. -*- lexical-binding: nil; -*-
;;; Commentary:
;; Basic configuration for helm-make.
;;; Code:
(require 'siren-helm)
(use-package helm-make
:after (helm-global-bindings)
:general
(:keymaps 'helm-command-map
"m" 'helm-make-projectile)
:custom
(helm-make-cache-targets nil)
(helm-make-do-save t)
(helm-make-fuzzy-matching t)
(helm-make-list-target-method 'qp))
(provide 'siren-helm-make)
;;; siren-helm-make.el ends here