You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using my time library as a test, LSP in emacs works well when I
dylan build -a
start a fresh emacs
C-x C-f time.dylan
M-x lsp
move around the file and use M-. or M-? on various things
If I instead change that first (build) step to rm -rf _build to make sure there are no build products, the subsequent steps fail with dylan-lsp-server crashing with:
It requires my dev branch changes that use dylan-tooldev branch changes to choose a reasonable default project to open, to even get this far, at least on macOS. Logging it here in case I get side-tracked before getting it fixed.
The text was updated successfully, but these errors were encountered:
In case it's not obvious, it seems fairly natural to get an error if there are no build products. The point is that we need to initiate a build and let the user know it may take some time for the initial build.
Reminder to self... we'll need to run dylan update in the workspace the first time a project is being opened. Or give an appropriate error with a suggestion that the user run it. Or prompt the user to "Run dylan update now?"
Using my
time
library as a test, LSP in emacs works well when Idylan build -a
C-x C-f time.dylan
M-x lsp
M-.
orM-?
on various thingsIf I instead change that first (build) step to
rm -rf _build
to make sure there are no build products, the subsequent steps fail withdylan-lsp-server
crashing with:It requires my
dev
branch changes that usedylan-tool
dev
branch changes to choose a reasonable default project to open, to even get this far, at least on macOS. Logging it here in case I get side-tracked before getting it fixed.The text was updated successfully, but these errors were encountered: