2019-10-09 13:13:56 +02:00
|
|
|
;;; macros.el --- Helpful variables for making my ELisp life more enjoyable -*- lexical-binding: t -*-
|
2020-09-01 00:28:47 +02:00
|
|
|
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
;; Version: 0.0.1
|
|
|
|
;; URL: https://git.wpcarro.dev/wpcarro/briefcase
|
|
|
|
;; Package-Requires: ((emacs "24"))
|
2019-10-09 13:13:56 +02:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; This file contains helpful variables that I use in my ELisp development.
|
|
|
|
|
|
|
|
;; TODO: Consider a macro solution for mimmicking OCaml's auto resolution of
|
|
|
|
;; dependencies using `load-path' and friends.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-09-01 00:28:47 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dependencies
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
(require 'f)
|
|
|
|
(require 'string)
|
|
|
|
(require 'symbol)
|
|
|
|
|
2020-09-01 00:28:47 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Library
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2019-10-09 13:13:56 +02:00
|
|
|
|
2020-09-01 00:28:47 +02:00
|
|
|
(defmacro macros-enable (mode)
|
2019-10-09 13:13:56 +02:00
|
|
|
"Helper for enabling `MODE'.
|
|
|
|
Useful in `add-hook' calls. Some modes, like `linum-mode' need to be called as
|
|
|
|
`(linum-mode 1)', so `(add-hook mode #'linum-mode)' won't work."
|
|
|
|
`#'(lambda nil (,mode 1)))
|
|
|
|
|
2020-09-01 00:28:47 +02:00
|
|
|
(defmacro macros-disable (mode)
|
2019-10-09 13:13:56 +02:00
|
|
|
"Helper for disabling `MODE'.
|
|
|
|
Useful in `add-hook' calls."
|
|
|
|
`#'(lambda nil (,mode -1)))
|
|
|
|
|
2020-09-01 00:28:47 +02:00
|
|
|
(defmacro macros-add-hook-before-save (mode f)
|
2019-10-09 13:13:56 +02:00
|
|
|
"Register a hook, `F', for a mode, `MODE' more conveniently.
|
2020-09-02 15:49:10 +02:00
|
|
|
Usage: (macros-add-hook-before-save 'reason-mode-hook #'refmt-before-save)"
|
2019-10-09 13:13:56 +02:00
|
|
|
`(add-hook ,mode
|
|
|
|
(lambda ()
|
|
|
|
(add-hook 'before-save-hook ,f))))
|
|
|
|
|
|
|
|
;; TODO: Privatize?
|
2020-09-01 00:28:47 +02:00
|
|
|
(defun macros--namespace ()
|
2019-10-09 13:13:56 +02:00
|
|
|
"Return the namespace for a function based on the filename."
|
|
|
|
(->> (buffer-file-name)
|
|
|
|
f-filename
|
|
|
|
f-base))
|
|
|
|
|
2020-09-01 00:28:47 +02:00
|
|
|
(defmacro macros-comment (&rest _)
|
2019-10-09 13:13:56 +02:00
|
|
|
"Empty comment s-expresion where `BODY' is ignored."
|
|
|
|
`nil)
|
|
|
|
|
2020-09-01 00:28:47 +02:00
|
|
|
(defmacro macros-support-file-extension (ext mode)
|
2019-10-09 13:13:56 +02:00
|
|
|
"Register MODE to automatically load with files ending with EXT extension.
|
2020-09-01 00:28:47 +02:00
|
|
|
Usage: (macros-support-file-extension \"pb\" protobuf-mode)"
|
|
|
|
(let ((extension (string-format "\\.%s\\'" ext)))
|
2019-10-09 13:13:56 +02:00
|
|
|
`(add-to-list 'auto-mode-alist '(,extension . ,mode))))
|
|
|
|
|
|
|
|
(provide 'macros)
|
|
|
|
;;; macros.el ends here
|