-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minor update - disable electric indent by default, - remove unused functions - some indentation correction: + indent by two after a colon that is after a symbol + indent queries as the previous line if it begins with a query - sorted lines alphabetically * Add test facilities * Added subscripts and superscripts in quail
- Loading branch information
1 parent
61e6620
commit a821599
Showing
6 changed files
with
107 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
VERSION = 1.0 | ||
|
||
.PHONY: build | ||
build: | ||
cask build | ||
|
||
.PHONY: dist | ||
dist: | ||
cask package | ||
|
||
.PHONY: test | ||
tests: dist | ||
./test.sh $(VERSION) | ||
|
||
.PHONY: clean | ||
clean: | ||
cask clean-elc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
## Test the lambdapi-mode built from '*.el' files. | ||
## The script downloads a fresh and basic configuration, creates a temporary | ||
## directory and launches emacs in it. You can create a new 'foo.lp' to try the | ||
## mode. | ||
## | ||
## Takes the version of the mode as first argument | ||
set -eu | ||
tmp="$(mktemp -d)" | ||
cp "dist/lambdapi-mode-$1.tar" "${tmp}" | ||
(cd "${tmp}" || exit 1 | ||
curl https://sanemacs.com/sanemacs.el > sanemacs.el | ||
echo '(use-package eglot)' >> sanemacs.el | ||
echo '(use-package math-symbol-lists)' >> sanemacs.el | ||
emacs --quick -l sanemacs.el \ | ||
--eval "(package-install-file \"lambdapi-mode-$1.tar\")") | ||
rm -rf "${tmp}" |