-
Notifications
You must be signed in to change notification settings - Fork 0
/
make-mon-systems-etags.sh
executable file
·62 lines (60 loc) · 1.44 KB
/
make-mon-systems-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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/sh
#
#
### ==============================
# :FILE-CREATED <Timestamp: #{2011-04-20T12:58:07-04:00Z}#{11163} - by MON>
# :FILE mon-systems/make-mon-systems-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)
#
# Currently not tagging these:
#
# ./deprecated.lisp
# ./emacs-compat.lisp
#
# I've always wondered why authors of CL DSLs often name write their macros
# def-<FOO> (as opposed to some less lispy prefix or no prefix at all).
# TIL that apparently etags --language=lisp finds pretty much anything "def-" or
# "(pkg:def*" at BOL. This Includes stuff like "(sb-rt:deftest".
#
### ==============================
etags ./alist.lisp \
./arrays.lisp \
./bit-twiddle.lisp \
./buffer.lisp \
./char-numeric.lisp \
./chars.lisp \
./chronos.lisp \
./class-doc.lisp \
./class-utils.lisp \
./completion.lisp \
./compose.lisp \
./conditions.lisp \
./deprecated.lisp \
./docs.lisp \
./emacs-compat.lisp \
./environ.lisp \
./file-dir.lisp \
./file-io.lisp \
./format.lisp \
./hash.lisp \
./introspect.lisp \
./io.lisp \
./macros.lisp \
./numbers.lisp \
./plist.lisp \
./regexp.lisp \
./seqs.lisp \
./specials.lisp \
./strings.lisp \
./types.lisp \
--language=lisp
### ==============================
### EOF