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
I have two projects running at the same time, one is a runtime dependent on the other. The backend server is written in 0.12 while the frontend is still on 0.11 because of some dependencies I'm using.
So I have two VIM instances open for each project. I'm managing the purs executable to use by using NVM to have two node installations with different purescript package installed in them.
Now when I open Project 1, and load the modules using :Pload!.
Then in the next instance I'm running Project 2, the imports, autocomplete are showing me the modules from the Project 1, though there is no compile time dependency between them. Another issue comes when I go to lookup the functions.
If both projects have a function with same name, such as appFlow in my case, calling :Pgoto appFlow in Project 2 is opening a new buffer having the file from Project 1 opened at the same symbol.
I tried searching the documentation on how to change the port of the PSC IDE server based on the project location, but couldn't find any solution to this.
I think we need to launch a new PURS IDE server if the working directory of the VIM instance is different. Can you tell me how to solve this issue?
The text was updated successfully, but these errors were encountered:
I have two projects running at the same time, one is a runtime dependent on the other. The backend server is written in 0.12 while the frontend is still on 0.11 because of some dependencies I'm using.
So I have two VIM instances open for each project. I'm managing the purs executable to use by using NVM to have two node installations with different purescript package installed in them.
Now when I open Project 1, and load the modules using
:Pload!
.Then in the next instance I'm running Project 2, the imports, autocomplete are showing me the modules from the Project 1, though there is no compile time dependency between them. Another issue comes when I go to lookup the functions.
If both projects have a function with same name, such as appFlow in my case, calling
:Pgoto appFlow
in Project 2 is opening a new buffer having the file from Project 1 opened at the same symbol.I tried searching the documentation on how to change the port of the PSC IDE server based on the project location, but couldn't find any solution to this.
I think we need to launch a new PURS IDE server if the working directory of the VIM instance is different. Can you tell me how to solve this issue?
The text was updated successfully, but these errors were encountered: