-
-
Notifications
You must be signed in to change notification settings - Fork 220
Open
Labels
Description
Godot version
Godot v4.5.stable
VS Code version
1.105.1
Godot Tools VS Code extension version
2.5.1
System information
Windows 11
Issue description
This issue may be related to #624.
If godotTools.formatter.denseFunctionParameters is true, the formatter seems to delete spaces wrongly in a specific case.
Steps to reproduce
Set godotTools.formatter.denseFunctionParameters to true and format the code contains lambda function.
for example:
tween.finished.connect(
func():
_is_tween_playing = false
)↓
tween.finished.connect(
func():
_is_tween_playing=false
)