Skip to content

Commit d3f2341

Browse files
committed
Revert "test"
This reverts commit 7fed3c1.
1 parent 7fed3c1 commit d3f2341

File tree

260 files changed

+18363
-1467
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+18363
-1467
lines changed

.gitignore

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,10 @@
22
lua/
33
profile.json
44

5+
# cli
6+
result/
7+
target/
8+
packages.json
9+
510
# macOS
611
.DS_Store
7-
8-
# Generated by Cargo
9-
# will have compiled files and executables
10-
/target/
11-
12-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
13-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
14-
# Cargo.lock
15-
16-
# These are backup files generated by rustfmt
17-
**/*.rs.bk
18-
19-
# These are files generated by nix
20-
/result/
21-
result
22-
/.direnv
23-
24-
# these are files generated by alpacka testing
25-
/pack
26-
*.bin

Cargo.lock

Lines changed: 0 additions & 268 deletions
This file was deleted.

Cargo.toml

Lines changed: 0 additions & 24 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Shaurya Singh
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

Lines changed: 0 additions & 4 deletions
This file was deleted.

after/queries/fennel/highlights.scm

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
;; extends
2+
3+
;; _VARARG
4+
((symbol) @constant.builtin
5+
(#any-of? @constant.builtin
6+
"_VARARG")
7+
(#set! priority 150))
8+
9+
;; Lambdas
10+
(["lambda" "λ"] @keyword.function @conceal
11+
(#set! conceal "λ"))
12+
13+
((symbol) @keyword.function @conceal
14+
(#any-of? @keyword.function
15+
"lambda" "λ")
16+
(#set! conceal "λ"))
17+
18+
;; Functions
19+
(("fn") @keyword.function @conceal
20+
(#set! conceal ""))
21+
22+
((symbol) @keyword.function @conceal
23+
(#any-of? @keyword.function
24+
"fn")
25+
(#set! conceal ""))
26+
27+
;; Hash Functions
28+
((symbol) @keyword.function @conceal
29+
(#any-of? @keyword.function
30+
"hashfn" "#")
31+
(#set! conceal "#"))

0 commit comments

Comments
 (0)