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
@cxxxr It looks like I can not run it in vscode according to your readme:
depends on vscode-lisp
$ cd ~/.roswell/cl-lsp/vscode
$ npm install
$ code .
After vscode is started, I opened the "vscode" path and hit F5, then in the new vscode instance to open some lisp files, but there is no command as "lisp.replStart" and so on.
I try to setup it in windows, and .roswel is installed in dir like: C:\Users\test\.roswell
and the vscode path is: C:\Users\test\.roswell\local-projects\cxxxr\cl-lsp\vscode
The text was updated successfully, but these errors were encountered:
Open a lisp file, press Ctrl+Shift+P to access Command Palette, type lisp. You should see commands like Lisp: REPL - Start, Lisp: Evaluate etc.
This extension tries to run roswell script cl-lsp in activate function in extension.ts To make it work in Windows I had to replace spawn line in activate function with the following:
let childProcess = child_process.spawn("e:/wrk/_lisp/roswell/ros.exe",
["-Q", "--", "c:/Users/Serge/.roswell/bin/cl-lsp","stdio"]);
@cxxxr It looks like I can not run it in vscode according to your readme:
After vscode is started, I opened the "vscode" path and hit F5, then in the new vscode instance to open some lisp files, but there is no command as "lisp.replStart" and so on.
I try to setup it in windows, and .roswel is installed in dir like:
C:\Users\test\.roswell
and the vscode path is:
C:\Users\test\.roswell\local-projects\cxxxr\cl-lsp\vscode
The text was updated successfully, but these errors were encountered: