We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f734c4 commit ef69edfCopy full SHA for ef69edf
lua/godotdev/health.lua
@@ -150,6 +150,28 @@ Make sure the Godot editor is running with LSP server enabled.
150
health.info("ℹ️ C# checks skipped (csharp=false)")
151
end
152
153
+ health.start("Formatter: gdformat")
154
+
155
+ if vim.fn.executable("gdformat") == 1 then
156
+ health.ok("✅ OK 'gdformat' found")
157
+ else
158
+ local install_instructions = [[
159
+❌ ERROR 'gdformat' not found.
160
+Install it with Python pip or Homebrew:
161
162
+Linux / macOS:
163
+ pip install gdtoolkit
164
165
+macOS (Homebrew):
166
+ brew install gdtoolkit
167
168
+Windows:
169
170
+]]
171
+ health.warn(install_instructions)
172
+ end
173
174
check_indent()
175
176
177
return M
0 commit comments