Skip to content

Commit 0328381

Browse files
committed
🙈 Add .gitignore
1 parent 16c5de9 commit 0328381

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
3+
!/.gitignore
4+
!/LICENCE
5+
!/README.md
6+
!/.github/
7+
!/shell.nix
8+
9+
!/grammar.js
10+
!/queries/
11+
!/test/
12+
!/tree-sitter.json
13+
14+
!/*.rockspec

grammar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="tree-sitter-cli/dsl" />
22

3-
module.exports = grammar({
3+
export default grammar({
44
name: "tmux",
55

66
extras: $ => [/\s/, /\\\r?\n/, $.comment, /\\( |\t|\v|\f)/],

tree-sitter.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
"bindings": {
3131
"c": true,
3232
"go": true,
33+
"java": false,
3334
"node": true,
3435
"python": true,
3536
"rust": true,
3637
"swift": true,
3738
"zig": false
3839
}
39-
}
40+
}

0 commit comments

Comments
 (0)