-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(scheme-langserver):defaultly enable log/out/multi-thread and disable type-inference #3278
Conversation
50f88e7
to
7a641ce
Compare
@@ -1,6 +1,6 @@ | |||
local util = require 'lspconfig.util' | |||
local bin_name = 'scheme-langserver' | |||
local cmd = { bin_name } | |||
local cmd = { bin_name, "~/.scheme-langserver.log", "enable", "disable" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
single quote
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I've updated.
@@ -1,6 +1,6 @@ | |||
local util = require 'lspconfig.util' | |||
local bin_name = 'scheme-langserver' | |||
local cmd = { bin_name } | |||
local cmd = { bin_name, '~/.scheme-langserver.log', 'enable', 'disable' } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
local cmd = { bin_name, '~/.scheme-langserver.log', 'enable', 'disable' } | |
local cmd = { 'scheme-langserver', '~/.scheme-langserver.log', 'enable', 'disable' } |
remove bin_name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
No description provided.