diff options
author | Case Duckworth | 2021-09-30 23:17:41 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-30 23:17:41 -0500 |
commit | 2c93878756d6e0c83853195a192ef6b80894c59f (patch) | |
tree | c88f1241092afbc2deb2e94d5486ae334992205a /lisp | |
parent | Remove custom bindings for winum (diff) | |
download | emacs-2c93878756d6e0c83853195a192ef6b80894c59f.tar.gz emacs-2c93878756d6e0c83853195a192ef6b80894c59f.zip |
Re-write acdw-reading.el
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/acdw-reading.el | 105 |
1 files changed, 69 insertions, 36 deletions
diff --git a/lisp/acdw-reading.el b/lisp/acdw-reading.el index e3d5716..ff4f0c2 100644 --- a/lisp/acdw-reading.el +++ b/lisp/acdw-reading.el | |||
@@ -17,8 +17,60 @@ | |||
17 | 17 | ||
18 | ;;; Code: | 18 | ;;; Code: |
19 | 19 | ||
20 | (defvar-local //indicate-empty-lines nil) | 20 | ;;; Customizations |
21 | (defvar-local //indicate-buffer-boundaries nil) | 21 | |
22 | (defgroup reading nil | ||
23 | "Group for Reading mode customizations." | ||
24 | :prefix "reading-" | ||
25 | :group 'convenience) ; i need to figure this out | ||
26 | |||
27 | (defcustom reading-vars '((indicate-empty-lines . nil) | ||
28 | (indicate-buffer-boundaries . nil)) | ||
29 | "Alist of variables to set in function `reading-mode'. | ||
30 | The car of each cell is the variable name, and the cdr is the | ||
31 | value to set it to." | ||
32 | :type '(alist :key-type variable | ||
33 | :value-type sexp)) | ||
34 | |||
35 | (defcustom reading-modes '((display-fill-column-indicator-mode . -1) | ||
36 | (blink-cursor-mode . -1)) | ||
37 | "Alist of modes to set in function `reading-mode'. | ||
38 | The car of each cell is the function name, and the cdr is the | ||
39 | value to call it with." | ||
40 | :type '(alist :key-type function | ||
41 | :value-type sexp)) | ||
42 | |||
43 | ;;; Internal | ||
44 | |||
45 | (defvar reading--remembered-template "reading--remembered-%s-value" | ||
46 | "The template passed to `format' for remembered modes and variables.") | ||
47 | |||
48 | (defun reading--remember (things func) | ||
49 | "Apply FUNC to THINGS, remembering their previous value for later." | ||
50 | (declare (indent 1)) | ||
51 | (unless (listp things) | ||
52 | (setq things (list things))) | ||
53 | (dolist (thing things) | ||
54 | (set (make-local-variable | ||
55 | (intern (format reading--remembered-template thing))) | ||
56 | (and (boundp thing) | ||
57 | (symbol-value thing))) | ||
58 | (funcall func thing))) | ||
59 | |||
60 | (defun reading--recall (things func) | ||
61 | "Recall previously remembered THINGS by applying FUNC to them. | ||
62 | FUNC should be a function with the signature (THING REMEMBERED-SETTING)." | ||
63 | (declare (indent 1)) | ||
64 | (unless (listp things) | ||
65 | (setq things (list things))) | ||
66 | (dolist (thing things) | ||
67 | (with-demoted-errors "reading--recall: %S" | ||
68 | (let ((value (symbol-value | ||
69 | (intern | ||
70 | (format reading--remembered-template thing))))) | ||
71 | (funcall func thing value))))) | ||
72 | |||
73 | ;;; Mode | ||
22 | 74 | ||
23 | ;;;###autoload | 75 | ;;;###autoload |
24 | (define-minor-mode reading-mode | 76 | (define-minor-mode reading-mode |
@@ -27,41 +79,22 @@ | |||
27 | :lighter " Read" | 79 | :lighter " Read" |
28 | :keymap (make-sparse-keymap) | 80 | :keymap (make-sparse-keymap) |
29 | (if reading-mode | 81 | (if reading-mode |
30 | (progn ;; turn on | 82 | ;; turn on |
31 | ;; settings | 83 | (progn |
32 | (setq-local //indicate-empty-lines indicate-empty-lines | 84 | (reading--remember (mapcar #'car reading-vars) |
33 | indicate-empty-lines nil | 85 | (lambda (var) |
34 | //indicate-buffer-boundaries indicate-buffer-boundaries | 86 | (set (make-local-variable var) |
35 | indicate-buffer-boundaries nil) | 87 | (cdr (assoc var reading-vars))))) |
36 | ;; disable modes | 88 | (reading--remember (mapcar #'car reading-modes) |
37 | (dolist (mode '(display-fill-column-indicator-mode | 89 | (lambda (mode) |
38 | blink-cursor-mode)) | 90 | (funcall mode (cdr (assoc mode reading-modes)))))) |
39 | (when (fboundp mode) | ||
40 | (set (make-local-variable | ||
41 | (intern (format "//%s" mode))) | ||
42 | (and (boundp mode) | ||
43 | (symbol-value mode))) | ||
44 | (funcall mode -1))) | ||
45 | ;; enable modes | ||
46 | (dolist (mode '(olivetti-mode)) | ||
47 | (when (fboundp mode) | ||
48 | (set (make-local-variable | ||
49 | (intern (format "//%s" mode))) | ||
50 | (and (boundp mode) | ||
51 | (symbol-value mode))) | ||
52 | (funcall mode +1)))) | ||
53 | ;; turn off | 91 | ;; turn off |
54 | ;; restore settings | 92 | (reading--recall (mapcar #'car reading-vars) |
55 | (setq-local indicate-empty-lines //indicate-empty-lines | 93 | (lambda (var orig-val) |
56 | indicate-buffer-boundaries //indicate-buffer-boundaries) | 94 | (set (make-local-variable var) orig-val))) |
57 | ;; restore modes | 95 | (reading--recall (mapcar #'car reading-modes) |
58 | (dolist (mode '(display-fill-column-indicator-mode | 96 | (lambda (mode orig-setting) |
59 | olivetti-mode | 97 | (funcall mode (if orig-setting +1 -1)))))) |
60 | blink-cursor-mode)) | ||
61 | (when (fboundp mode) | ||
62 | (funcall mode (if (symbol-value (intern (format "//%s" mode))) | ||
63 | +1 | ||
64 | -1)))))) | ||
65 | 98 | ||
66 | (provide 'acdw-reading) | 99 | (provide 'acdw-reading) |
67 | ;;; acdw-reading.el ends here | 100 | ;;; acdw-reading.el ends here |