-
Notifications
You must be signed in to change notification settings - Fork 28
/
ews.el
338 lines (304 loc) · 12.4 KB
/
ews.el
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
;;; ews.el --- Convenience functions for authors -*- lexical-binding: t; -*-
;; Copyright (C) 2024 Peter Prevos
;; Author: Peter Prevos <[email protected]>
;; Maintainer: Peter Prevos <[email protected]>
;; Created: 1 January 2024
;; Version: 1.2
;; Keywords: convenience
;; Homepage: https://lucidmanager.org/tags/emacs/
;; URL: https://github.com/pprevos/emacs-writing-studio
;; This file is NOT part of GNU Emacs.
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;
;;; Commentary:
;;
;; Series of convenience functions for Emacs Writing Studio
;; https://lucidmanager.org/tags/emacs
;;
;;; Code:
;; Emacs Writing Studio Customisation
(defgroup ews ()
"Emacs Writing Studio."
:group 'files
:link '(url-link :tag "Homepage" "https://lucidmanager.org/tags/emacs/"))
(defcustom ews-bibtex-directory
(concat (file-name-as-directory (getenv "HOME")) "library")
"Location of BibTeX files and attachments."
:group 'ews
:type 'directory)
(defcustom ews-denote-para-keywords
'("projects" "areas" "resources" "archives")
"List of keywords to use for implementing the PARA method with Denote."
:group 'ews
:type 'list)
(defcustom ews-hunspell-dictionaries "en_AU"
"Comma-separated list of Hunspell dictionaries."
:group 'ews
:type 'list)
(defcustom ews-org-completed-action "DONE"
"Completed action that triggers resetting checkboxes for recurring tasks."
:group 'ews
:type 'string)
(defcustom ews-org-heading-level-capitalise nil
"Minimum level of Org headings to be capitalised.
'nil implies all levels are capitalised."
:group 'ews
:type '(choice (const :tag "All headings" nil)
(integer :tag "Highest level" 1)))
;; Check for missing external software
;;;###autoload
(defun ews-missing-executables (prog-list)
"Identify missing executables in PROG-LIST.
Sublists indicate that one of the entries is required."
(let ((missing '()))
(dolist (exec prog-list)
(if (listp exec)
(unless (cl-some #'executable-find exec)
(push (format "(%s)" (mapconcat 'identity exec " or ")) missing))
(unless (executable-find exec)
(push exec missing))))
(if missing
(message "Missing executable files(s): %s"
(mapconcat 'identity missing ", "))
(message "No missing executable files."))))
;;; BIBLIOGRAPHY
(defvar ews-bibtex-files
(when (file-exists-p ews-bibtex-directory)
(directory-files ews-bibtex-directory t "^[A-Z|a-z|0-9].+.bib$"))
"List of BibTeX files. Use `ews-bibtex-register` to configure.")
;;;###autoload
(defun ews-bibtex-register ()
"Register the contents of the `ews-bibtex-directory` with `ews-bibtex-files`.
Use when adding or removing a BibTeX file from or to `ews-bibtex-directory`."
(interactive)
(when (file-exists-p ews-bibtex-directory)
(let ((bib-files (directory-files ews-bibtex-directory t
"^[A-Z|a-z|0-9].+.bib$")))
(setq ews-bibtex-files bib-files
org-cite-global-bibliography bib-files
citar-bibliography bib-files)))
(message "Registered:\n%s" (mapconcat #'identity ews-bibtex-files "\n")))
(defun ews--bibtex-combined-biblio-lookup ()
"Combines `biblio-lookup' and `biblio-doi-insert-bibtex'."
(require 'biblio)
(let* ((dbs (biblio--named-backends))
(db-list (append dbs '(("DOI" . biblio-doi-backend))))
(db-selected (biblio-completing-read-alist
"Backend:"
db-list)))
(if (eq db-selected 'biblio-doi-backend)
(let ((doi (read-string "DOI: ")))
(biblio-doi-insert-bibtex doi))
(biblio-lookup db-selected))))
;;;###autoload
(defun ews-bibtex-biblio-lookup ()
"Insert Biblio search results into current buffer or select BibTeX file."
(interactive)
(if-let ((current-mode major-mode)
ews-bibtex-files
(bibfiles (length ews-bibtex-files))
(bibfile (cond ((eq bibfiles 1) (car ews-bibtex-files))
((equal major-mode 'bibtex-mode)
(buffer-file-name))
(t (completing-read
"Select BibTeX file:" ews-bibtex-files)))))
(progn (find-file bibfile)
(goto-char (point-max))
(ews--bibtex-combined-biblio-lookup)
(save-buffer))
(message "No BibTeX file(s) defined.")))
;; Search for missing BibTeX attachments and filenames
(defun ews--bibtex-extract-filenames ()
"Extract attachment file names from BibTeX files in `ews-bibtex-directory'."
(ews-bibtex-register)
(let ((attachments '()))
(dolist (bibtex-file ews-bibtex-files)
(with-temp-buffer
(insert-file-contents bibtex-file)
(goto-char (point-min))
(while (re-search-forward "file.*=.*{\\([^}]+\\)}" nil t)
(let ((file-paths (split-string (match-string 1)
"[[:space:]]*;[[:space:]]*")))
(dolist (file-path file-paths)
(push (expand-file-name (string-trim file-path)
ews-bibtex-directory)
attachments))))))
attachments))
(defun ews--bibtex-extract-files ()
"List files recursively in `ews-bibtex-directory'. Excludes `.bib` and `.csl`."
(seq-remove (lambda (file)
(or (string-suffix-p ".bib" file)
(string-suffix-p ".csl" file)))
(directory-files-recursively ews-bibtex-directory "")))
;;;###autoload
(defun ews-bibtex-missing-files ()
"List BibTeX attachments not listed in a BibTeX file entry."
(interactive)
(let* ((files (ews--bibtex-extract-files))
(attachments (ews--bibtex-extract-filenames))
(missing (cl-remove-if
(lambda (f) (member f attachments)) files)))
(message "%s files not registered in bibliography" (length missing))
(dolist (file missing)
(message "Missing file: %s" file))))
;;;###autoload
(defun ews-bibtex-missing-attachments ()
"List BibTeX file entries without matching attachment."
(interactive)
(let* ((files (ews--bibtex-extract-files))
(attachments (ews--bibtex-extract-filenames))
(missing (cl-remove-if
(lambda (f) (member f files)) attachments)))
(message "%s BibTeX files without matching attachment." (length missing))
(dolist (file missing)
(message "Missing file: %s" file))))
;; Denote
;;;###autoload
(defun ews-denote-assign-para ()
"Move your note to either Project, Area, Reource or Archive (PARA).
Configure the PARA names with `ews-denote-para-keywords'."
(interactive)
(if-let* ((file (buffer-file-name))
((denote-filename-is-note-p file))
(all-keywords (string-split (denote-retrieve-filename-keywords file) "_"))
(keywords (seq-remove (lambda (keyword)
(member keyword ews-denote-para-keywords))
all-keywords))
(para (completing-read "Select category: " ews-denote-para-keywords))
(new-keywords (push para keywords)))
(denote-rename-file
file
(denote-retrieve-title-or-filename file (denote-filetype-heuristics file))
new-keywords
(denote-retrieve-filename-signature file))
(message "Current buffer is not a Denote file.")))
;;;###autoload
(defun ews-dired-narrow (selection)
"Mark files in denote-firectory using a regular expression."
(interactive "sMark files (regexp):")
(when (not (eq major-mode 'dired-mode))
(dired denote-directory))
(dired-mark-files-regexp selection)
(dired-toggle-marks)
(dired-do-kill-lines))
;; Distraction-free writing
(defvar ews-olivetti-point nil
"Stores the point position before enabling Olivetti mode.")
;;;###autoload
(defun ews-olivetti ()
"Distraction-free writing environment enhancing Olivetti mode.
Stores the window configuration when enabling Olivetti mode.
Restores the previous configuration when existing Olivetti mode
and moves point to the last location."
(interactive)
(if olivetti-mode
(progn
(if (eq (length (window-list)) 1)
(progn
(jump-to-register 1)
(goto-char ews-olivetti-point)))
(olivetti-mode 0)
(text-scale-set 0))
(progn
(setq ews-olivetti-point (point))
(window-configuration-to-register 1)
(delete-other-windows)
(text-scale-set 1)
(olivetti-mode t))))
;;;###autoload
(defun ews-org-insert-notes-drawer ()
"Generate or open a NOTES drawer under the current heading.
If a drawer exists for this section, a new line is created at the end of the
current note."
(interactive)
(push-mark)
(org-previous-visible-heading 1)
(forward-line)
(if (looking-at-p "^[ \t]*:NOTES:")
(progn
(org-fold-hide-drawer-toggle 'off)
(re-search-forward "^[ \t]*:END:" nil t)
(forward-line -1)
(org-end-of-line)
(org-return))
(org-insert-drawer nil "NOTES"))
(org-unlogged-message "Press <C-u C-SPACE> to return to the previous position."))
;;;###autoload
(defun ews-org-count-words ()
"Add word count to each heading property drawer in an Org mode buffer."
(interactive)
(org-map-entries
(lambda ()
(let* ((start (point))
(end (save-excursion (org-end-of-subtree)))
(word-count (count-words start end)))
(org-set-property "WORDCOUNT" (number-to-string word-count))))))
;;;###autoload
(defun ews-org-insert-screenshot ()
"Take a screenshot with the maim program and insert as an Org mode link."
(interactive)
(let ((filename (read-file-name "Enter filename for screenshot: " default-directory)))
(unless (string-equal "png" (file-name-extension filename))
(setq filename (concat (file-name-sans-extension filename) ".png")))
(call-process-shell-command (format "maim --select %s" filename))
(insert (format "#+caption: %s\n" (read-from-minibuffer "Caption: ")))
(insert (format "[[file:%s]]" filename))
(org-redisplay-inline-images)))
;;; Org mode todo enhancements
(defun ews--org-recurring-action-p ()
"Returns non-nil when the action under point is recurring."
(let ((timestamp (or (org-entry-get nil "SCHEDULED" t)
(org-entry-get nil "DEADLINE" t))))
(if timestamp (string-match-p "\\+" timestamp))))
;;;###autoload
(defun ews-org-reset-checkboxes-when-done ()
"Reset all checkboxes in the subtree when status changes."
(when (and (ews--org-recurring-action-p)
(equal ews-org-completed-action
(substring-no-properties (org-get-todo-state))))
(org-reset-checkbox-state-subtree)))
(add-hook #'org-after-todo-state-change-hook
#'ews-org-reset-checkboxes-when-done)
;;;###autoload
(defun ews-org-headings-titlecase (&optional arg)
"Cycle through all headings in an Org buffer and convert them to title case.
When used with universal argument converts to sentence case.
Customise `titlecase-style' for styling."
(interactive "P")
(let ((style (if arg 'sentence titlecase-style)))
(message "Converting headings to '%s' style" style)
(org-map-entries
(lambda ()
(let* ((heading (substring-no-properties (org-get-heading t t t t)))
(level (org-current-level))
(heading-lower (downcase heading))
(new-heading (titlecase--string heading-lower style)))
(when (<= level (or ews-org-heading-level-capitalise 999))
(org-edit-headline new-heading)))))))
(defun ews-denote-link-description-title-case (file)
"Return link description for FILE.
If the region is active, use it as the description. The title is formatted with
the `titlecase' package.
This function is useful as the value of `denote-link-description-function'."
(let* ((file-type (denote-filetype-heuristics file))
(title (denote-retrieve-title-or-filename file file-type))
(clean-title (if (string-match-p " " title)
title
(replace-regexp-in-string "\\([a-zA-Z0-9]\\)-\\([a-zA-Z0-9]\\)" "\\1 \\2" title)))
(region-text (denote--get-active-region-content)))
(cond
(region-text region-text)
(title (format "%s" (titlecase--string clean-title titlecase-style)))
(t ""))))