about summary refs log tree commit diff
path: root/configs/shared/.emacs.d/wpc/macros.el
blob: a41cb8db9a523996ab7bb902c892a5ce98f19ac2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
;;; macros.el --- Helpful variables for making my ELisp life more enjoyable -*- lexical-binding: t -*-
;; Authpr: William Carroll <wpcarro@gmail.com>

;;; 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:

(require 'f)
(require 'string)
(require 'symbol)

;; TODO: Support `xi' lambda shorthand macro.

(defmacro enable (mode)
  "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)))

(defmacro disable (mode)
  "Helper for disabling `MODE'.
Useful in `add-hook' calls."
  `#'(lambda nil (,mode -1)))

(defmacro add-hooks (modes callback)
  "Add multiple `MODES' for the `CALLBACK'.
Usage: (add-hooks '(one-mode-hook 'two-mode-hook) #'fn)"
  `(dolist (mode ,modes)
     (add-hook mode ,callback)))

(defmacro add-hook-before-save (mode f)
  "Register a hook, `F', for a mode, `MODE' more conveniently.
Usage: (add-hook-before-save 'reason-mode-hook #'refmt-before-save)"
  `(add-hook ,mode
             (lambda ()
               (add-hook 'before-save-hook ,f))))

;; TODO: Debug.
(defmacro macros/ilambda (&rest body)
  "Surrounds `BODY' with an interactive lambda function."
  `(lambda ()
     (interactive)
     ,@body))

;; TODO: Privatize?
(defun namespace ()
  "Return the namespace for a function based on the filename."
  (->> (buffer-file-name)
       f-filename
       f-base))

(defmacro macros/comment (&rest _)
  "Empty comment s-expresion where `BODY' is ignored."
  `nil)

;; NOTE: Not prepending the "macros" to this macro, since brevity is its goal.
(defmacro >> (&rest forms)
  "Compose a new, point-free function by composing FORMS together."
  (let ((sym (gensym)))
    `(lambda (,sym)
       (->> ,sym ,@forms))))

;; TOOD: Support this.
(cl-defmacro macros/test
    (&key function
          test
          args
          expect
          equality)
  (let* ((namespace (namespace))
         (test-name (string/->symbol
                     (s-concat namespace
                               "/"
                               "test"
                               "/"
                               (s-chop-prefix
                                (s-concat namespace "/")
                                (symbol/to-string function))))))
    `(ert-deftest ,test-name ()
       ,test
       (should (,equality (apply ,function ,args)
                        ,expect)))))

(defmacro macros/support-file-extension (ext mode)
  "Register MODE to automatically load with files ending with EXT extension.
Usage: (macros/support-file-extension \".pb\" protobuf-mode)"
  (let ((extension (string/format "\\.%s\\'" ext)))
    `(add-to-list 'auto-mode-alist '(,extension . ,mode))))

(provide 'macros)
;;; macros.el ends here