@@ -157,34 +157,6 @@ function M.setup()
157157 desc = " Restart ECA server" ,
158158 })
159159
160- vim .api .nvim_create_user_command (" EcaServerStatus" , function ()
161- local eca = require (" eca" )
162- local status = eca .server and eca .server :status () or " Not initialized"
163- local status_icon = " ○"
164-
165- if status == " Running" then
166- status_icon = " ✓"
167- elseif status == " Starting" then
168- status_icon = " ⋯"
169- elseif status == " Failed" then
170- status_icon = " ✗"
171- end
172-
173- Logger .notify (" ECA Server Status: " .. status .. " " .. status_icon , vim .log .levels .INFO )
174-
175- -- Also show path info if available
176- if eca .server and eca .server ._path_finder then
177- local config = require (" eca.config" )
178- if config .server_path and config .server_path ~= " " then
179- Logger .notify (" Server path: " .. config .server_path .. " (custom)" , vim .log .levels .INFO )
180- else
181- Logger .notify (" Server path: auto-detected/downloaded" , vim .log .levels .INFO )
182- end
183- end
184- end , {
185- desc = " Show ECA server status with details" ,
186- })
187-
188160 vim .api .nvim_create_user_command (" EcaLogs" , function (opts )
189161 local Api = require (" eca.api" )
190162 local subcommand = opts .args and opts .args :match (" %S+" ) or " show"
@@ -293,8 +265,6 @@ function M.setup()
293265 desc = " Emergency stop for infinite loops or runaway responses" ,
294266 })
295267
296-
297-
298268 vim .api .nvim_create_user_command (" EcaFixTreesitter" , function ()
299269 local Utils = require (" eca.utils" )
300270
0 commit comments