redhat-developer / quarkus-ls

Language server for Quarkus tooling
Eclipse Public License 2.0
44 stars 15 forks source link

Qute completion doesn't work when there is a line separator. #883

Open angelozerr opened 1 year ago

angelozerr commented 1 year ago

Given this Qute template, completion triggered on | shows methods of String:

{@String foo}
<div>{foo.|</div>

If the end div is set on a new line:

{@String foo}
<div>{foo.|
</div>

completion doesn't work.