Skip to content

Commit 862c5f9

Browse files
committed
feat(odin): add Odin language support (#13)
1 parent 7cb8f07 commit 862c5f9

File tree

6 files changed

+586
-1
lines changed

6 files changed

+586
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ https://github.com/user-attachments/assets/6bbcb1ab-45a0-45f3-a03a-1d0780219362
3434
- C++
3535
- Java
3636
- C#
37+
- Odin
3738

3839
## Requirements
3940

lua/timber/config.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ local default_config = {
3737
cpp = [[std::cout << "%log_target: " << %log_target << std::endl;]],
3838
java = [[System.out.println("%log_target: " + %log_target);]],
3939
c_sharp = [[Console.WriteLine($"%log_target: {%log_target}");]],
40+
odin = [[fmt.printf("%log_target: %v\n", %log_target)]],
4041
},
4142
plain = {
4243
javascript = [[console.log("%insert_cursor")]],
@@ -46,13 +47,14 @@ local default_config = {
4647
lua = [[print("%insert_cursor")]],
4748
ruby = [[puts("%insert_cursor")]],
4849
elixir = [[IO.puts(%insert_cursor)]],
49-
go = [[log.Printf("%insert_cursor")]],
50+
go = [[log.Println("%insert_cursor")]],
5051
rust = [[println!("%insert_cursor");]],
5152
python = [[print("%insert_cursor")]],
5253
c = [[printf("%insert_cursor \n");]],
5354
cpp = [[std::cout << "%insert_cursor" << std::endl;]],
5455
java = [[System.out.println("%insert_cursor");]],
5556
c_sharp = [[Console.WriteLine("%insert_cursor");]],
57+
odin = [[fmt.println("%insert_cursor")]],
5658
},
5759
},
5860
batch_log_templates = {
@@ -71,6 +73,7 @@ local default_config = {
7173
cpp = [[std::cout %repeat<<< "%log_target: " << %log_target>< << "\n " > << std::endl;]],
7274
java = [[System.out.printf("%repeat<%log_target=%s><, >%n", %repeat<%log_target><, >);]],
7375
c_sharp = [[Console.WriteLine($"%repeat<%log_target: {%log_target}><, >");]],
76+
odin = [[fmt.printf("%repeat<%log_target: %v><, >\n", %repeat<%log_target><, >)]],
7477
},
7578
},
7679
log_marker = "🪵",

queries/odin/timber-log-container.scm

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
(
2+
[
3+
(var_declaration)
4+
(variable_declaration)
5+
(const_declaration)
6+
(member_expression)
7+
] @log_container
8+
(#make-logable-range! @log_container "outer")
9+
)
10+
11+
(
12+
(assignment_statement) @log_container
13+
(#make-logable-range! @log_container "outer")
14+
)
15+
16+
; Function calls
17+
(
18+
(call_expression
19+
argument: (_) @log_container
20+
) @a
21+
(#make-logable-range! @a "outer")
22+
)
23+
24+
; Function declarations with parameters
25+
(procedure
26+
(parameters) @log_container
27+
(block) @a
28+
(#make-logable-range! @a "inner" 1 -1)
29+
)
30+
31+
; If statements
32+
(
33+
(if_statement
34+
condition: (_) @log_container
35+
consequence: (block) @a
36+
) @b
37+
(#make-logable-range! @a "inner" 1 -1)
38+
(#make-logable-range! @b "before")
39+
)
40+
41+
; Else if statements
42+
(
43+
(else_if_clause
44+
condition: (_) @log_container
45+
consequence: (block) @a
46+
)
47+
(#make-logable-range! @a "inner" 1 -1)
48+
)
49+
50+
; For loops
51+
(for_statement
52+
initializer: (_) @log_container
53+
consequence: (block) @a
54+
(#make-logable-range! @a "inner" 1 -1)
55+
)
56+
57+
(for_statement
58+
condition: (_) @log_container
59+
consequence: (block) @a
60+
(#make-logable-range! @a "inner" 1 -1)
61+
)
62+
63+
(for_statement
64+
post: (_) @log_container
65+
consequence: (block) @a
66+
(#make-logable-range! @a "inner" 1 -1)
67+
)
68+
69+
(for_statement
70+
(_) @log_container
71+
consequence: (block) @a
72+
(#make-logable-range! @a "inner" 1 -1)
73+
)
74+
75+
; Switch statements
76+
(
77+
(switch_statement
78+
condition: (_) @log_container
79+
) @a
80+
(#make-logable-range! @a "outer")
81+
)
82+
83+
(switch_case
84+
condition: (_) @log_container
85+
(block) @a
86+
(#make-logable-range! @a "inner" 1 -1)
87+
)
88+
89+
; Single statement case
90+
(switch_case
91+
condition: (_) @log_container
92+
(_) @a
93+
(#not-match? @a "^\\{")
94+
(#make-logable-range! @a "inner")
95+
)

queries/odin/timber-log-target.scm

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
(
2+
(identifier) @log_target
3+
(#not-has-parent? @log_target index_expression)
4+
(#not-has-parent? @log_target member_expression)
5+
(#not-has-parent? @log_target type)
6+
(#not-field-of-parent? @log_target call_expression function)
7+
)
8+
9+
(index_expression) @log_target
10+
11+
(member_expression
12+
(identifier) @log_target
13+
(_)
14+
)
15+
16+
(member_expression
17+
(identifier)
18+
(identifier)
19+
) @log_target

tests/minimal_init.lua

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ require("nvim-treesitter.configs").setup({
3535
"cpp",
3636
"java",
3737
"c_sharp",
38+
"odin",
3839
},
3940
sync_install = true,
4041
auto_install = false,

0 commit comments

Comments
 (0)