helix_view::editor [ERROR] editor error: Async job failed: request 1 timed out #7407
-
SummaryI'm using helix with pyright. to edit a single file, helix worked fine. Reproduction StepsI tried this:
I expected this to happen: Instead, this happened: Helix log~/.cache/helix/helix.log
PlatformLinux Terminal Emulatoralacritty Helix Version |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That error means that the language server is taking too long to respond. If your project is very large it might take pyright some time to scan through and index the references/definitions. You can configure the timeout to be higher (see https://docs.helix-editor.com/master/languages.html#language-server-configuration) and if pyright has a logfile itself you might find more clues there. I don't see anything wrong or bad on Helix's side here though. |
Beta Was this translation helpful? Give feedback.
Add
"autoSearchPaths" = true
or"diagnosticMode" = "workspace"
solves the problem