Skip to content

Commit

Permalink
fix symbol lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
JJPro committed Apr 10, 2020
1 parent b44724c commit 861dfc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions racket-langserver
Submodule racket-langserver added at b283c2
3 changes: 2 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export function activate(context: vscode.ExtensionContext) {
//******* Language Client ********
const executable = {
command: 'racket',
args: ['--lib', 'racket-langserver'],
// args: ['--lib', 'racket-langserver'],
args: [context.asAbsolutePath('racket-langserver/main.rkt')],
};

// If the extension is launched in debug mode then the debug server options are used
Expand Down

0 comments on commit 861dfc2

Please sign in to comment.