edgedb-editor-plugin
edgedb-editor-plugin copied to clipboard
Comment syntax highlighting inside type syntax
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
}
)