godotengine / godot-vscode-plugin

Godot development tools for VSCode
MIT License
1.47k stars 148 forks source link

Prevent document links from accidentally being resolved to your entire document #639

Closed DaelonSuzuka closed 2 months ago

DaelonSuzuka commented 2 months ago

Fixes #621

The document link provider used a regex that could accidentally consume your entire document.

This fix makes the pattern end at a newline, so the most it could consume is the rest of the current line.

I would prefer to make this behavior more restricted, but I don't see a clean way to do that right now.