-
Notifications
You must be signed in to change notification settings - Fork 0
/
make-unicly-etags.sh
executable file
·43 lines (41 loc) · 1.04 KB
/
make-unicly-etags.sh
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
#!/bin/sh
#
#
### ==============================
# :FILE-CREATED <Timestamp: #{2024-04-10T12:16:17-04:00Z}#{24153} - by MON KEY>
# :FILE unicly/make-unicly-etags.sh
#
# quickly find all the lisp files here:
# shell> find . -name "*.lisp" -print
#
# Add the current directory to the tail of Emacs' `tags-table-list'
# (add-to-list 'tags-table-list default-directory t)
#
# Make sure to tell customize or it'll wind up bitching:
# (custom-note-var-changed 'tags-table-list)
#
#
### ==============================
etags ./unicly-bit-vectors.lisp \
./unicly-bridge.lisp \
./unicly-byte-arrays.lisp \
./unicly-class.lisp \
./unicly-compat.lisp \
./unicly-conditions.lisp \
./unicly-deprecated.lisp \
./unicly-docs.lisp \
./unicly-extend.lisp \
./unicly-hash-table.lisp \
./unicly-integers.lisp \
./unicly-io.lisp \
./unicly-macros.lisp \
./unicly-null-check.lisp \
./unicly-specials.lisp \
./unicly-string-uuid.lisp \
./unicly-types.lisp \
./unicly-utils.lisp \
./unicly-uuid-version.lisp \
./unicly.lisp \
--language=lisp
### ==============================
### EOF