Hi @Eiji
I donβt think the Elixir parser does such distinction:
β― cat example.ex
1 |> then(fn x -> x * 2 end)
β― autumn dump-tree-sitter example.ex
source (0, 0) - (1, 0)
binary_operator (0, 0) - (0, 28)
integer (0, 0) - (0, 1) "1"
|> (0, 2) - (0, 4) "|>"
call (0, 5) - (0, 28)
identifier (0, 5) - (0, 9) "then"
arguments (0, 9) - (0, 28)
( (0, 9) - (0, 10) "("
anonymous_function (0, 10) - (0, 27)
fn (0, 10) - (0, 12) "fn"
stab_clause (0, 13) - (0, 23)
arguments (0, 13) - (0, 14)
identifier (0, 13) - (0, 14) "x"
-> (0, 15) - (0, 17) "->"
body (0, 18) - (0, 23)
binary_operator (0, 18) - (0, 23)
identifier (0, 18) - (0, 19) "x"
* (0, 20) - (0, 21) "*"
integer (0, 22) - (0, 23) "2"
end (0, 24) - (0, 27) "end"
) (0, 27) - (0, 28) ")"
So that then
(macro call) is highlighted as function.call
as defined in the query from nvim-treesitter:
β― autumn highlight example.ex --formatter html-linked
<pre class="athl"><code class="language-elixir" translate="no" tabindex="0"><span class="line" data-line="1"><span class="number">1</span> <span class="operator">|></span> <span class="function-call">then</span><span class="punctuation-bracket">(</span><span class="keyword">fn</span> <span class="variable">x</span> <span class="operator">-></span> <span class="variable">x</span> <span class="operator">*</span> <span class="number">2</span> <span class="keyword">end</span><span class="punctuation-bracket">)</span>
</span></code></pre>