File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 6
6
example
7
7
.dir-locals.el
8
8
* ~
9
+ sandbox
Original file line number Diff line number Diff line change @@ -38,10 +38,24 @@ clean:
38
38
rm -rf * .elc
39
39
rm -rf $(WORKDIR )
40
40
41
- .PHONY : doc test
41
+ .PHONY : doc test sandbox
42
42
doc :
43
43
cd doc && mermaid -c config.json architecture.mmd -w 940 -p
44
44
45
45
readme :
46
46
ruby -e ' puts IO.read("README.md").split("### Custom Variables")[0] + "### Custom Variables\n\n" + `emacs --batch --eval "$$ESCRIPT"`' | sponge README.md
47
47
48
+
49
+ sandbox :
50
+ rm -rf sandbox
51
+ mkdir sandbox
52
+ emacs -Q --debug \
53
+ --eval ' (setq user-emacs-directory (file-truename "sandbox"))' \
54
+ -l package \
55
+ --eval " (add-to-list 'package-archives '(\" gnu\" . \" http://elpa.gnu.org/packages/\" ) t)" \
56
+ --eval " (add-to-list 'package-archives '(\" melpa\" . \" https://melpa.org/packages/\" ) t)" \
57
+ --eval " (package-refresh-contents)" \
58
+ --eval " (package-initialize)" \
59
+ --eval " (package-install 'tide)" \
60
+ --eval "(when (eq system-type 'darwin) (setq mac-option-key-is-meta nil mac-command-key-is-meta t mac-command-modifier 'meta mac-option-modifier 'none))"
61
+
You can’t perform that action at this time.
0 commit comments