edgedb-editor-plugin icon indicating copy to clipboard operation
edgedb-editor-plugin copied to clipboard

Comment syntax highlighting inside type syntax

Open jackfischer opened this issue 2 years ago • 0 comments

Comment A is not highlighted in the following query,

with  examples := <array<tuple<
    x: str,
    y: str, # Comment A
  >>>$examples,

for e in array_unpack(examples) union (
  insert Example {
    x:=e.x, #Comment B
    y:=e.y
  }
)
Screenshot 2023-09-19 at 1 42 46 PM

jackfischer avatar Sep 19 '23 17:09 jackfischer