Dylan Scott

Results 6 comments of Dylan Scott

I ran into the same issue with a fresh Neovim install and fork of magic-kit that I added nvim-treesitter to (as it seemed to be recommended in the [Conjure readme](https://github.com/Olical/conjure#tree-sitter-support))....

It seems like it's able to fall back to logic that behaves correctly when treesitter isn't installed. I wonder if the [treesitter `enabled?`](https://github.com/Olical/conjure/blob/08236a13164a948fe403f34fe1f593ead0a3c6fe/fnl/conjure/tree-sitter.fnl#L16-L29) check could check if highlighting is enabled...

Sure, if I run the following: ```python import duckdb conn = duckdb.connect(database= ":memory") df = conn.execute("select '2022-08-17'::date as date_col").df() df.dtypes ``` I get ``` date_col datetime64[ns] dtype: object ``` Interestingly...

FWIW I was able to disable the broken syntax highlighting (at the cost of not getting any highlighting within template segments) with a hack like: ```typescript import { languages as...

I prepared a PR to add checks for these attributes if the change makes sense #2033