-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathtempel.el
More file actions
939 lines (855 loc) · 36.7 KB
/
Copy pathtempel.el
File metadata and controls
939 lines (855 loc) · 36.7 KB
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
;;; tempel.el --- Tempo templates/snippets with in-buffer field editing -*- lexical-binding: t -*-
;; Copyright (C) 2022-2026 Free Software Foundation, Inc.
;; Author: Daniel Mendler <mail@daniel-mendler.de>
;; Maintainer: Daniel Mendler <mail@daniel-mendler.de>
;; Created: 2022
;; Version: 1.14
;; Package-Requires: ((emacs "29.1") (compat "31"))
;; URL: https://github.com/minad/tempel
;; Keywords: abbrev, languages, tools, text
;; This file is 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:
;; Tempel implements a simple template/snippet system. The template format
;; is compatible with the template format of the Emacs Tempo library. Your
;; templates are stored in the `tempel-path' (by default the file
;; "templates" in the `user-emacs-directory'). Bind the commands
;; `tempel-complete', `tempel-expand' or `tempel-insert' to some keys in
;; your user configuration. You can jump with the keys M-{ and M-} from
;; field to field. `tempel-complete' and `tempel-expand' work best with
;; the Corfu completion UI, while `tempel-insert' uses `completing-read'
;; under the hood. You can also use `tempel-complete' and `tempel-expand'
;; as `completion-at-point-functions'.
;;; Code:
(require 'compat)
(eval-when-compile
(require 'subr-x)
(require 'cl-lib))
(defgroup tempel nil
"Tempo templates/snippets with in-buffer field editing."
:link '(info-link :tag "Info Manual" "(tempel)")
:link '(url-link :tag "Website" "https://github.com/minad/tempel")
:link '(emacs-library-link :tag "Library Source" "tempel.el")
:group 'abbrev
:group 'tools
:group 'matching
:prefix "tempel-")
(defcustom tempel-path (expand-file-name "templates" user-emacs-directory)
"A file or a list of template files.
The file paths can contain wildcards, e.g.,
\"~/.config/emacs/templates/*/*.eld\", which matches all
`lisp-data-mode' files in the subdirectories of the templates
directory."
:type '(choice string (repeat string)))
(defcustom tempel-mark
#(" " 0 1 (display (space :width (1)) face cursor))
"Field start indicator."
:type '(choice (const nil) string))
(defcustom tempel-insert-annotation 40
"Annotation width for `tempel-insert'."
:type '(choice (const nil) natnum))
(defcustom tempel-complete-annotation 20
"Annotation width for `tempel-complete'."
:type '(choice (const nil) natnum))
(defcustom tempel-user-elements nil
"List of user element handler functions.
The functions take a template element as argument and must return either
nil or a new template element, which is subsequently evaluated."
:type 'hook)
(defcustom tempel-template-sources
(list #'tempel-path-templates)
"List of template sources.
A source can either be a function or a variable symbol. The functions
must return a list of templates which apply to the buffer or context."
:type 'hook)
(defcustom tempel-done-on-region t
"Automatically finish template when entering region field."
:type 'boolean)
(defcustom tempel-done-on-next t
"Automatically finish template on `tempel-next' from last field."
:type 'boolean)
(defcustom tempel-auto-reload t
"Reload templates when files specified by `tempel-path' change.
If a file is modified, added or removed, reload the templates."
:type 'boolean)
(defface tempel-field
'((((class color) (min-colors 88) (background light))
:background "#fdf0ff" :foreground "#541f4f")
(((class color) (min-colors 88) (background dark))
:background "#230631" :foreground "#e5cfef")
(t :inherit highlight))
"Face used for fields.")
(defface tempel-form
'((((class color) (min-colors 88) (background light))
:background "#ecf7ed" :foreground "#004000")
(((class color) (min-colors 88) (background dark))
:background "#001904" :foreground "#b8e2b8")
(t :inherit region))
"Face used for evaluated forms.")
(defface tempel-default
'((((class color) (min-colors 88) (background light))
:background "#ebf6fa" :foreground "#0f3360" :slant italic)
(((class color) (min-colors 88) (background dark))
:background "#041529" :foreground "#a8e5e5" :slant italic)
(t :inherit highlight :slant italic))
"Face used for default values.")
(defvar tempel--path-templates nil
"Templates loaded from the `tempel-path'.")
(defvar tempel--history nil
"Completion history used by `tempel-insert'.")
(defvar tempel--inhibit-hooks nil
"Inhibit tempel modification change hooks from running.")
(defvar tempel--ignore-condition nil
"Ignore template condition.")
(defvar-local tempel--active nil
"List of active templates.
Each template state is a pair, where the car is a list of overlays and
the cdr is an alist of variable bindings. The template state is attached
to each overlay as the property `tempel--field'. Furthermore overlays
may be named with `tempel--name' or carry an evaluatable Lisp expression
`tempel--form'.")
(defvar-keymap tempel-map
:doc "Keymap to navigate across template fields."
"<remap> <beginning-of-buffer>" #'tempel-beginning
"<remap> <end-of-buffer>" #'tempel-end
"<remap> <kill-sentence>" #'tempel-kill
"<remap> <keyboard-escape-quit>" #'tempel-abort
"<remap> <backward-paragraph>" #'tempel-previous
"<remap> <forward-paragraph>" #'tempel-next
;; Use concrete keys because of org mode
"M-RET" #'tempel-done
"M-{" #'tempel-previous
"M-}" #'tempel-next
"M-<up>" #'tempel-previous
"M-<down>" #'tempel-next)
(defun tempel--print-template (template)
"Print TEMPLATE."
(cl-loop
for elt in template until (keywordp elt) collect
(pcase elt
('nil "")
((pred stringp) elt)
(`(s ,name) (symbol-name name))
(`(,(or 'p 'P) ,_ ,name . ,noinsert)
(and (not (car noinsert)) (symbol-name name)))
('> " ")
('n> "\n ")
((or 'n '& '% 'o) "\n")
(_ #("_" 0 1 (face shadow))))
into result finally return (apply #'concat result)))
(defun tempel--template-plist (template)
"Get property list from TEMPLATE list."
(cl-loop for x on template if (keywordp (car x)) return x))
(defun tempel--insert-doc (template)
"Insert documentation of TEMPLATE."
(when-let* ((doc (plist-get (tempel--template-plist template) :doc)))
(unless (eq ?\n (char-before)) (insert "\n"))
(insert (propertize "\n" 'face '(:overline t :height 0.1 :extend t)))
(insert doc)))
(defun tempel--annotate (templates width sep name)
"Annotate template NAME given the list of TEMPLATES.
WIDTH and SEP configure the formatting."
(when-let* ((name (intern-soft name))
(template (alist-get name templates)))
(let ((ann (truncate-string-to-width
(string-trim
(replace-regexp-in-string
"[ \t\n\r]+" " "
(or (plist-get (tempel--template-plist template) :ann)
(tempel--print-template template))))
width)))
(add-face-text-property 0 (length ann) 'completions-annotations t ann)
(concat sep ann))))
(defun tempel--info-buffer (templates fun name)
"Create info buffer for template NAME.
FUN inserts the info into the buffer.
TEMPLATES is the list of templates."
(when-let* ((name (intern-soft name))
(template (alist-get name templates)))
(with-current-buffer (get-buffer-create " *tempel-info*")
(setq buffer-read-only t)
(let ((inhibit-read-only t))
(erase-buffer)
(funcall fun template)))))
(defun tempel--delete-word (word)
"Delete WORD before point."
(let ((beg (max (point-min) (- (point) (length word)))))
(when (save-excursion (search-backward word beg 'noerror))
(delete-region beg (point)))))
(defun tempel--exit (templates region name status)
"Exit function for completion for template NAME and STATUS.
TEMPLATES is the list of templates.
REGION are the current region bounds."
(when-let* (((not (eq status 'exact)))
(sym (intern-soft name))
(template (alist-get sym templates)))
(tempel--delete-word name)
(tempel--insert template region)))
(defun tempel--range-modified (ov &rest _)
"Range overlay OV modified."
(when (and (not tempel--inhibit-hooks)
(= (overlay-start ov) (overlay-end ov)))
(let ((inhibit-modification-hooks nil)
(tempel--inhibit-hooks t))
(tempel--disable (overlay-get ov 'tempel--range)))))
(defun tempel--field-modified (ov after beg end &optional _len)
"Update field overlay OV.
AFTER is non-nil after the modification.
BEG and END are the boundaries of the modification."
(unless tempel--inhibit-hooks
(let ((inhibit-modification-hooks nil)
(tempel--inhibit-hooks t))
(cond
;; Erase default text before modification when typing over it at the
;; beginning or end. Deleting or editing inside preserves the text.
((and (not after) (overlay-get ov 'tempel--default) (eq beg end)
(or (= beg (overlay-start ov)) (= end (overlay-end ov))))
(delete-region (overlay-start ov) (overlay-end ov)))
;; Update field after modification
(after
(let ((st (overlay-get ov 'tempel--field)))
(unless undo-in-progress
(move-overlay ov (overlay-start ov) (max end (overlay-end ov))))
(when-let* ((name (overlay-get ov 'tempel--name)))
(setf (alist-get name (cdr st))
(buffer-substring-no-properties
(overlay-start ov) (overlay-end ov))))
(unless undo-in-progress
(tempel--sync-fields st ov)))))
(tempel--update-mark ov))))
(defun tempel--sync-fields (st current)
"Synchronize fields of ST, except CURRENT overlay."
(let ((range (caar st)))
(dolist (ov (cdar st))
(unless (eq ov current)
(save-excursion
(goto-char (overlay-start ov))
(when-let* ((str (if-let* ((form (overlay-get ov 'tempel--form)))
;; Ignore errors since variables may not be defined yet.
(condition-case nil
(eval form (cdr st))
(void-variable ""))
(when-let* ((name (overlay-get ov 'tempel--name)))
(alist-get name (cdr st))))))
(tempel--sync-replace (overlay-start ov)
(overlay-end ov) ov str))))
;; Move range overlay
(move-overlay range
(min (overlay-start range) (overlay-start ov))
(max (overlay-end range) (overlay-end ov))))))
(defun tempel--sync-replace (beg end ov str)
"Replace region between BEG and END with STR.
If OV is alive, move it."
(let ((old (buffer-substring-no-properties beg end)))
(setq ov (and ov (overlay-buffer ov) ov))
(unless (equal str old)
(unless (eq buffer-undo-list t)
(push (list 'apply #'tempel--sync-replace
beg (+ beg (length str)) ov old)
buffer-undo-list))
(let ((buffer-undo-list t))
(save-excursion
(goto-char beg)
(delete-char (- end beg))
(insert str)
(when ov
(move-overlay ov beg (point))
(tempel--update-mark ov)))))))
(defun tempel--update-mark (ov)
"Update field mark and face of OV."
(unless (overlay-get ov 'tempel--form)
(when (overlay-get ov 'tempel--default)
(overlay-put ov 'tempel--default nil)
(overlay-put ov 'face 'tempel-field))
(overlay-put ov 'before-string
(and (= (overlay-start ov) (overlay-end ov))
tempel-mark))))
(defun tempel--field (&optional name init default)
"Add template field.
NAME is the optional field name.
INIT is the optional initial input.
DEFAULT specifies if initial input is a default value.
Return the added field."
(let ((st (car tempel--active))
(ov (make-overlay (point) (point)))
(hooks (list #'tempel--field-modified)))
(push ov (cdar st))
(when name
(overlay-put ov 'tempel--name name)
(setf init (or init (alist-get name (cdr st) ""))
(alist-get name (cdr st)) init))
(when (and init (not (equal init "")))
(insert init)
(move-overlay ov (overlay-start ov) (point)))
(tempel--update-mark ov)
(overlay-put ov 'tempel--field st)
(overlay-put ov 'modification-hooks hooks)
(overlay-put ov 'insert-in-front-hooks hooks)
(overlay-put ov 'insert-behind-hooks hooks)
(overlay-put ov 'face 'tempel-field)
(when (and init default)
(overlay-put ov 'face 'tempel-default)
(overlay-put ov 'tempel--default
(if (string-suffix-p ": " init) 'end 'start)))
(tempel--sync-fields st ov)
(goto-char (overlay-end ov))
ov))
(defun tempel--form (form initial)
"Add new template field evaluating FORM with INITIAL text.
Return the added field."
(insert initial)
(let ((ov (make-overlay (- (point) (length initial)) (point) nil t)))
(overlay-put ov 'face 'tempel-form)
(overlay-put ov 'tempel--form form)
(push ov (cdaar tempel--active))
ov))
(defmacro tempel--protect (&rest body)
"Protect BODY, catch errors."
`(with-demoted-errors "Tempel Error: %S"
,@body))
(defun tempel--element (region elt)
"Add template ELT given the REGION.
A template can consist of elements of several types:
- string: The string is inserted in the buffer.
- nil: It is ignored.
- `p': An empty and unnamed placeholder field is inserted.
- `r': Inserts the currently active region. If no region is active, a
placeholder field is inserted. If `tempel-done-on-region' is non-nil,
the template is finished when you jump to the field like `q'.
- `r>': Like `r', but it also indents the region.
- `n': Inserts a newline.
- `n>': Inserts a newline and indents line.
- `>': The line is indented using `indent-according-to-mode'. Note
that you often should place this item after the text you want on the
line.
- `&': If there is only whitespace between the line start and point,
nothing happens. Otherwise a newline is inserted.
- `%': If there is only whitespace between point and end of line,
nothing happens. Otherwise a newline is inserted.
- `o': Like `%' but leaves the point before the newline.
- (s NAME): Inserts a named field.
- (p PROMPT <NAME> <NOINSERT>): Insert an optionally named field with a
prompt. The PROMPT is displayed directly in the buffer as default
value. The field value is bound to NAME and updated dynamically. If
NOINSERT is non-nil, no field is inserted and the minibuffer is used
for prompting. For clarity, the symbol `noinsert' should be used as
argument.
- (r PROMPT <NAME> <NOINSERT>): Like (p ..), but if there is a current
region, it is placed here.
- (r> PROMPT <NAME> <NOINSERT>): Like (r ..), but is also indents the
region.
- (l ELEMENTS..): Insert multiple elements.
- Anything else is passed to each function in `tempel-user-elements'
until one of the functions returns non-nil, and the result is
inserted. If all of them return nil, the form is evaluated. The
result can either be a string or any other element. If the return
value is a string it is dynamically updated on modification of other
fields. Other return values are treated as elements and inserted
according to the rules. The element (l ..) is useful to return
multiple elements.
Tempel extends the Tempo syntax with the following elements:
- (p FORM <NAME> <NOINSERT>): Like (p ..) described above, but FORM is
evaluated. FORM can for example call `completing-read' to select
among various elements.
- (FORM ..): If a Lisp form evaluates to a string, it is inserted as
overlay and the overlay is updated on modifications of other fields.
- `q': Like `p', but the template is finished if the user jumps to the
field. Similarly `r' finishes the template if `tempel-done-on-region'
is non-nil.
Use caution with templates which execute arbitrary code!"
(pcase elt
('nil)
('n (insert "\n"))
;; `indent-according-to-mode' fails sometimes in Org. Ignore errors.
('n> (insert "\n") (tempel--protect (indent-according-to-mode)))
('> (tempel--protect (indent-according-to-mode)))
((pred stringp) (insert elt))
('& (unless (or (bolp) (save-excursion (re-search-backward "^\\s-*\\=" nil t)))
(insert "\n")))
('% (unless (or (eolp) (save-excursion (re-search-forward "\\=\\s-*$" nil t)))
(insert "\n")))
('o (unless (or (eolp) (save-excursion (re-search-forward "\\=\\s-*$" nil t)))
(open-line 1)))
(`(s ,name) (tempel--field name))
(`(l . ,lst) (dolist (e lst) (tempel--element region e)))
((or 'p `(,(or 'p 'P) . ,rest)) (apply #'tempel--placeholder rest))
((or 'r 'r> `(,(or 'r 'r>) . ,rest))
(if (not region)
(when-let* ((ov (apply #'tempel--placeholder rest))
((not rest))
(tempel-done-on-region))
(overlay-put ov 'tempel--enter #'tempel--done))
(goto-char (cdr region))
(when (eq (or (car-safe elt) elt) 'r>)
(indent-region (car region) (cdr region) nil))))
;; TEMPEL EXTENSION: Quit template immediately
('q (overlay-put (tempel--field) 'tempel--enter #'tempel--done))
(_ (let* ((uel (tempel--user-element elt))
(val (unless uel
;; Ignore errors since variables may not be defined yet.
(condition-case nil
(eval elt (cdar tempel--active))
(void-variable "")))))
(if (or uel (not (stringp val)))
(tempel--element region (or uel val))
;; TEMPEL EXTENSION: Evaluate forms
(tempel--form elt val))))))
(defun tempel--user-element (elt)
"Evaluate user element ELT."
(run-hook-wrapped 'tempel-user-elements
(lambda (hook elt fields)
(condition-case nil
(funcall hook elt)
(wrong-number-of-arguments
(funcall hook elt fields))))
elt (cdar tempel--active)))
(defun tempel--placeholder (&optional prompt name noinsert)
"Handle placeholder element and add field with NAME.
If NOINSERT is non-nil do not insert a field, only bind the value to NAME.
PROMPT is the optional prompt/default value.
If a field was added, return it."
(let ((init
(cond
((and (stringp prompt) noinsert) (read-string prompt))
((stringp prompt) prompt)
;; TEMPEL EXTENSION: Evaluate prompt
(t (eval prompt (cdar tempel--active))))))
(if noinsert
(progn (setf (alist-get name (cdar tempel--active)) init) nil)
(tempel--field name init (stringp prompt)))))
(defun tempel--insert (template region)
"Insert TEMPLATE given the current REGION."
(let ((plist (tempel--template-plist template)))
(eval (plist-get plist :pre) 'lexical)
(unless (eq buffer-undo-list t)
(push '(apply tempel--disable) buffer-undo-list))
(setf (alist-get 'tempel--active minor-mode-overriding-map-alist) tempel-map)
(save-excursion
;; Split existing overlays, do not expand within existing field.
(dolist (st tempel--active)
(dolist (ov (cdar st))
(when (and (<= (overlay-start ov) (point))
(>= (overlay-end ov) (point)))
(setf (overlay-end ov) (point)))))
;; Activate template
(let* ((range (make-overlay (point) (point) nil t))
(st (cons (list range) nil))
(tempel--inhibit-hooks t))
(push st tempel--active)
(cl-loop for x in template until (keywordp x)
do (tempel--element region x))
(move-overlay range (overlay-start range) (point))
;; (overlay-put range 'face 'region) ;; Enable for debugging
(overlay-put range 'modification-hooks (list #'tempel--range-modified))
(overlay-put range 'tempel--range st)
(overlay-put range 'tempel--post (plist-get plist :post))))
(cond
((cl-loop for ov in (caar tempel--active)
never (overlay-get ov 'tempel--field))
(goto-char (overlay-end (caaar tempel--active)))
(tempel--done)) ;; Finalize right away
((cl-loop for ov in (caar tempel--active)
never (and (overlay-get ov 'tempel--field)
(eq (point) (overlay-start ov))))
(tempel-next))))) ;; Jump to first field
(defun tempel--save ()
"Prompt to save modified files in `tempel-path'."
(cl-loop
with all = nil
for (file . _ts) in (car tempel--path-templates) do
(when-let* ((buf (get-file-buffer file)))
(with-current-buffer buf
(when (and (buffer-modified-p)
(pcase (or all (read-answer
(format "Save file %s? " file)
'(("yes" ?y "save the file")
("no" ?n "skip the file")
("all" ?! "save all modified files"))))
("yes" t)
("no" nil)
("all" (setq all "all"))))
(save-buffer buf))))))
(defun tempel--file-read (file)
"Load templates from FILE."
(with-temp-buffer
(insert "(\n")
(insert-file-contents file)
(goto-char (point-max))
(insert "\n)")
(goto-char (point-min))
(tempel--file-prepare (read (current-buffer)))))
(defun tempel--file-prepare (data)
"Reorganize the template DATA from file.
DATA must be a list (MODES PLIST TEMPLATES MODES PLIST TEMPLATES...).
See the README, which provides an example for the file format of the
template.eld file. The return value is a list of elements of the
form (MODE COND . TEMPLATES)."
(let (result)
(while data
(let (modes plist templates)
(while (and (car data) (symbolp (car data)) (not (keywordp (car data))))
(push (pop data) modes))
(while (keywordp (car data))
(setq plist `(,(car data) ,(cadr data) ,@plist)
data (cddr data)))
(while (consp (car data))
(push (pop data) templates))
(setq plist (or (not (plist-member plist :when)) (plist-get plist :when))
templates (nreverse templates))
(dolist (mode modes)
(push `(,mode ,plist ,@templates) result))))
result))
(defun tempel-path-templates ()
"Return templates defined in `tempel-path'.
Additionally, save any files in `tempel-path' that have been modified
since the last time this function was called. This function can be used
as source in `tempel-template-sources'."
(when (or (not tempel--path-templates) tempel-auto-reload)
(let* ((files
(cl-loop for path in (ensure-list tempel-path)
nconc (file-expand-wildcards path t)))
(timestamps
(cl-loop
for f in files collect
(cons f (time-convert (file-attribute-modification-time
(file-attributes (file-chase-links f)))
'integer)))))
(unless (equal (car tempel--path-templates) timestamps)
(setq tempel--path-templates
(cons timestamps (mapcan #'tempel--file-read files))))))
(tempel--filter-templates (cdr tempel--path-templates)))
(defun tempel--filter-templates (templates)
"Filter templates from TEMPLATES relevant to the current buffer.
TEMPLATES must be a list of elements of the form (MODE COND . TEMPLATES)."
(cl-loop for (mode cond . mode-templates) in templates
if (tempel--condition-p mode cond)
append mode-templates))
(defun tempel--condition-p (mode cond)
"Return non-nil if MODE matches and COND is satisfied."
(and
(or (eq mode #'fundamental-mode)
(derived-mode-p mode)
(when-let* ((remap (alist-get mode major-mode-remap-alist)))
(derived-mode-p remap)))
(or tempel--ignore-condition
(eq cond t)
(save-excursion
(save-restriction
(save-match-data
(eval cond 'lexical)))))))
(defun tempel--templates ()
"Return templates for current mode."
(let (list)
(run-hook-wrapped
'tempel-template-sources
(lambda (fun)
(cond
((functionp fun) (push (funcall fun) list))
((boundp fun) (push (symbol-value fun) list))
(t (error "Template source is not a function or a variable: %S" fun)))
nil))
(apply #'append (nreverse list))))
(defun tempel--region ()
"Return region bounds."
(when (use-region-p)
(when (< (mark) (point)) (exchange-point-and-mark))
(deactivate-mark)
(cons (point-marker) (mark-marker))))
(defun tempel--find (dir)
"Find next overlay in DIR."
(let ((pt (point)) next stop)
(dolist (st tempel--active next)
(dolist (ov (car st))
(unless (overlay-get ov 'tempel--form)
(setq stop (if (or (< dir 0)
(eq 'start (overlay-get ov 'tempel--default)))
(overlay-start ov)
(overlay-end ov)))
(cond
((and (> dir 0) (> stop pt))
(setq next (min (or next (point-max)) stop)))
((and (< dir 0) (< stop pt))
(setq next (max (or next -1) stop)))))))))
(defun tempel--active-p (_sym buffer)
"Return non-nil if Tempel is active in BUFFER."
(buffer-local-value 'tempel--active buffer))
(defun tempel-beginning ()
"Move to beginning of the template."
(declare (completion tempel--active-p))
(interactive)
(when-let* ((pos (tempel--beginning)))
(cond
((/= pos (point)) (goto-char pos))
(tempel-done-on-next (tempel-done t)))))
(defun tempel-end ()
"Move to end of the template."
(declare (completion tempel--active-p))
(interactive)
(when-let* ((pos (tempel--end)))
(cond
((/= pos (point)) (goto-char pos))
(tempel-done-on-next (tempel-done t)))))
(defun tempel--find-overlay (type)
"Find overlay of TYPE at point."
(let ((start most-positive-fixnum) field)
(dolist (ov (overlays-in (max (point-min) (1- (point)))
(min (point-max) (1+ (point)))))
(when (and (overlay-get ov type) (< (overlay-start ov) start))
(setq start (overlay-start ov) field ov)))
field))
(defun tempel-kill ()
"Kill the field contents."
(declare (completion tempel--active-p))
(interactive)
(if-let* ((ov (tempel--find-overlay 'tempel--field)))
(kill-region (overlay-start ov) (overlay-end ov))
(kill-sentence nil)))
(defun tempel-next (&optional n)
"Move N fields forward.
Quit at the end if `tempel-done-on-next' is non-nil."
(declare (completion tempel--active-p))
(interactive "p")
(setq n (or n 1))
(cl-loop for i below (abs n) do
(if-let* ((next (tempel--find n)))
(goto-char next)
(when tempel-done-on-next
(tempel-done t))
(cl-return)))
;; Run the enter action of the field.
(when-let* ((ov (tempel--find-overlay 'tempel--field))
(fun (overlay-get ov 'tempel--enter)))
(funcall fun ov)))
(defun tempel-previous (&optional n)
"Move N fields backward.
Quit at the beginning if `tempel-done-on-next' is non-nil."
(declare (completion tempel--active-p))
(interactive "p")
(tempel-next (- (or n 1))))
(defun tempel--beginning ()
"Return beginning of template markers."
(and tempel--active
(cl-loop for st in tempel--active minimize (overlay-start (caar st)))))
(defun tempel--end ()
"Return end of template markers."
(and tempel--active
(cl-loop for st in tempel--active maximize (overlay-end (caar st)))))
(defun tempel--disable (&optional st)
"Disable template ST, or last template."
(if st
(cl-callf2 delq st tempel--active)
(setq st (pop tempel--active)))
(when st
(mapc #'delete-overlay (car st))
(unless tempel--active
(cl-callf2 assq-delete-all 'tempel--active minor-mode-overriding-map-alist))))
(defun tempel--for (all fun)
"Call FUN for template at point or all templates if ALL is non-nil."
(declare (indent 1))
(if all
(if tempel--active
(while tempel--active
(funcall fun (car tempel--active)))
(user-error "No active templates"))
(funcall fun (overlay-get
(or (tempel--find-overlay 'tempel--range)
(user-error "No active template at point"))
'tempel--range))))
(defun tempel-done (&optional all)
"Finish current template.
If prefix argument ALL is given, finish all templates."
(declare (completion tempel--active-p))
(interactive "P")
(tempel--for all #'tempel--done))
(defun tempel-abort (&optional all)
"Abort current template.
If prefix argument ALL is given, abort all templates."
(declare (completion tempel--active-p))
(interactive "P")
(tempel--for all
(lambda (st)
(let ((beg (overlay-start (caar st)))
(end (overlay-end (caar st))))
(tempel--disable)
(delete-region beg end)))))
(defun tempel--done (&optional st)
"Finalize template ST, or last template."
(let ((st (if (overlayp st) (overlay-get st 'tempel--field)
(or st (car tempel--active))))
(buf (current-buffer)))
;; Ignore errors in post expansion to ensure that templates can be
;; terminated gracefully.
(tempel--protect (eval (overlay-get (caar st) 'tempel--post) (cdr st)))
(with-current-buffer buf
(tempel--disable st))))
(defun tempel--prefix-bounds (templates)
"Return prefix bounds given TEMPLATES list."
(let ((beg (save-excursion (skip-chars-backward "^[:space:]") (point)))
(end (point)))
(if (and (/= beg end)
;; Check if prefix matches a template name.
(try-completion (buffer-substring-no-properties beg end)
templates))
(cons beg end)
;; Fallback to `bounds-of-thing-at-point'.
(bounds-of-thing-at-point 'symbol))))
;;;###autoload
(defun tempel-expand (&optional interactive)
"Expand exactly matching template name at point.
This completion-at-point-function (Capf) returns only the single
exactly matching template name. As a consequence the completion
UI (e.g. Corfu) does not present the candidates for selection.
If you want to select from a list of templates, use
`tempel-complete' instead. If INTERACTIVE is nil the function
acts like a Capf, otherwise like an interactive completion
command."
(interactive (list t))
(when interactive
(tempel--save))
(if-let* ((templates (tempel--templates))
(bounds (tempel--prefix-bounds templates))
(name (buffer-substring-no-properties
(car bounds) (cdr bounds)))
(sym (intern-soft name))
(template (assq sym templates)))
(if interactive
(tempel--exit templates nil name 'finished)
(setq templates (list template))
(list (car bounds) (cdr bounds) templates
:category 'tempel
:exclusive 'no
:exit-function (apply-partially #'tempel--exit templates nil)))
(when interactive (user-error "tempel-expand: No matching templates"))))
;;;###autoload
(defun tempel-complete (&optional interactive)
"Complete template name at point and expand.
This completion-at-point-function (Capf) returns a list of all
possible template names, which are then displayed in the
completion UI (e.g. Corfu) for selection. See also
`tempel-expand'. If INTERACTIVE is nil the function acts like a
Capf, otherwise like an interactive completion command."
(interactive (list t))
(if interactive
(let ((completion-at-point-functions (list #'tempel-complete))
completion-cycle-threshold)
(tempel--save)
(unless (completion-at-point)
(user-error "tempel-complete: No matching templates")))
;; Use the marked region for template insertion if triggered manually.
(let ((region (and (eq this-command #'tempel-complete) (tempel--region))))
(when-let* ((templates (tempel--templates))
(bounds (or (and (not region)
(tempel--prefix-bounds templates))
(cons (point) (point)))))
(list (car bounds) (cdr bounds) templates
:category 'tempel
:exclusive 'no
:company-kind (lambda (_) 'snippet)
:exit-function (apply-partially #'tempel--exit templates region)
:company-doc-buffer
(apply-partially #'tempel--info-buffer templates
(lambda (template)
(insert (tempel--print-template template))
(tempel--insert-doc template)
(current-buffer)))
:company-location
(apply-partially #'tempel--info-buffer templates
(lambda (template)
(pp (cl-loop for x in template
until (keywordp x) collect x)
(current-buffer))
(tempel--insert-doc template)
(list (current-buffer))))
:annotation-function
(when tempel-complete-annotation
(apply-partially #'tempel--annotate
templates tempel-complete-annotation " ")))))))
;;;###autoload
(defun tempel-insert (template-or-name)
"Insert TEMPLATE-OR-NAME.
If called interactively, select a template with `completing-read'."
(interactive (list nil))
(tempel--insert
(if (consp template-or-name) template-or-name
(let ((templates (or (tempel--templates)
(error "Tempel: No templates for %s" major-mode))))
(unless template-or-name
(setq template-or-name
(intern-soft
(completing-read
"Template: "
(completion-table-with-metadata
templates
`((category . tempel)
,@(when tempel-insert-annotation
`((annotation-function
. ,(apply-partially
#'tempel--annotate templates tempel-insert-annotation
#(" " 1 2 (display (space :align-to (+ left 20))))))))))
nil t nil 'tempel--history))))
(or (and template-or-name (alist-get template-or-name templates))
(user-error "Template %s not found" template-or-name))))
(tempel--region)))
;;;###autoload
(defmacro tempel-key (key template-or-name &optional map)
"Bind KEY to TEMPLATE-OR-NAME in MAP."
(unless (key-valid-p key)
(error "Invalid key %s" key))
`(define-key
,(or map 'global-map) ,(key-parse key)
,(if (consp template-or-name)
`(lambda ()
(interactive)
(tempel-insert ',template-or-name))
(let ((cmd (intern (format "tempel-insert-%s" template-or-name))))
`(prog1 ',cmd
(defun ,cmd ()
,(format "Insert template %s in the current buffer."
template-or-name)
(interactive)
(tempel-insert ',template-or-name)))))))
;;;###autoload
(define-minor-mode tempel-abbrev-mode
"Install Tempel templates as abbrevs."
:group 'tempel
:global nil
(setq-local abbrev-minor-mode-table-alist
(assq-delete-all 'tempel-abbrev-mode abbrev-minor-mode-table-alist))
(when (eq abbrev-minor-mode-table-alist
(default-value 'abbrev-minor-mode-table-alist))
(kill-local-variable 'abbrev-minor-mode-table-alist))
(when tempel-abbrev-mode
(let ((table (make-abbrev-table))
(tempel--ignore-condition t))
(dolist (sym (delete-dups (mapcar #'car (tempel--templates))))
(let ((hook (make-symbol (symbol-name sym))))
(fset hook (lambda ()
(tempel--delete-word (symbol-name sym))
(tempel--insert (alist-get sym (tempel--templates)) nil)
t))
(put hook 'no-self-insert t)
(define-abbrev table (symbol-name sym) 'Template hook
:system t :enable-function
(lambda () (assq sym (tempel--templates))))))
(setq-local abbrev-minor-mode-table-alist
(cons `(tempel-abbrev-mode . ,table)
abbrev-minor-mode-table-alist)))))
;;;###autoload
(define-globalized-minor-mode global-tempel-abbrev-mode
tempel-abbrev-mode tempel--abbrev-on
:group 'tempel)
(defun tempel--abbrev-on ()
"Enable abbrev mode locally."
(unless (or noninteractive (eq (aref (buffer-name) 0) ?\s))
(tempel-abbrev-mode 1)))
(provide 'tempel)
;;; tempel.el ends here