diff options
Diffstat (limited to 'lua/lspconfig/server_configurations/bright_script.lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/bright_script.lua | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lua/lspconfig/server_configurations/bright_script.lua b/lua/lspconfig/server_configurations/bright_script.lua index 4d58968b..6d4ba823 100644 --- a/lua/lspconfig/server_configurations/bright_script.lua +++ b/lua/lspconfig/server_configurations/bright_script.lua @@ -1,14 +1,8 @@ -local bin_name = 'bsc' -local cmd = { bin_name, '--lsp', '--stdio' } local util = require 'lspconfig/util' -if vim.fn.has 'win32' == 1 then - cmd = { 'cmd.exe', '/C', bin_name, '--stdio' } -end - return { default_config = { - cmd = cmd, + cmd = { 'bsc', '--lsp', '--stdio' }, filetypes = { 'brs' }, single_file_support = true, root_dir = util.root_pattern('makefile', 'Makefile', '.git'), |
