Has anyone got zed + the nim extension+ nimlsp working? Zed does seem to launch nimlsp, but not nimsuggest, and I don't seem to gain any functionality over just having the nim extension installed. In other words, things like "Go to definition" or "Find all references" don't work. Zed does indicate
When I try it with nimlangserver it spawns instances of nimsuggest until it freezes my computer. "maxNimsuggestProcesses": 3 doesn't seem to help
You can see my config file and some weirdness I'm dealing with here https://github.com/zed-industries/zed/issues/29902
nimlsp doesn't run nimsuggest, as it embeds it
it's one of the differences between nimlangserver by nim team (which runs nimsuggest processes) and nimlsp by pmunch (which requires nimsuggest source code at compilation)
@giaco Thanks!
For future readers: The seeming lack of extra functionality from nimlsp is the product of nimsuggest taking 1-2 minutes to setup after launch. You can watch the nimlsp process in a task manager, and once it drops to 0% CPU usage, the functionality will be available.
More information regarding nimlangserver and multiple instances of nimsuggest can be found: https://forum.nim-lang.org/t/12881