tree-sitter-julia icon indicating copy to clipboard operation
tree-sitter-julia copied to clipboard

Subtype operator in parametric composite type definition not captured in Neovim

Open mroavi opened this issue 2 years ago • 0 comments

The <: operator in the code below is not properly captured and highlighted in Neovim. I think this can also be solved with a query (in the future, should I open this kind of PRs in https://github.com/nvim-treesitter/nvim-treesitter instead?)

struct Point{T} <: Pointy{T}
  x::T
  y::T
end

image

mroavi avatar Jan 23 '23 19:01 mroavi