In janet, ;(...) is (splice (...)). I think parinfer treats it as comment instead.
I checked the file parinfer.kak, but that seems to work fine.
cc @andreyorst
Reproduction
Save the code bellow as foo.janet. In kak, set buffer filetype janet.
Try to replace (splice parsed) with ;parsed.
You will see that the line turns into (tuple) ;parsed
In janet,
;(...)
is(splice (...))
. I think parinfer treats it as comment instead.I checked the file
parinfer.kak
, but that seems to work fine. cc @andreyorstReproduction
Save the code bellow as
foo.janet
. In kak,set buffer filetype janet
. Try to replace(splice parsed)
with;parsed
. You will see that the line turns into(tuple) ;parsed