Skip to content

Commit

Permalink
fix(bufls): fix bufls command option (#2578)
Browse files Browse the repository at this point in the history
  • Loading branch information
nazo6 authored May 1, 2023
1 parent 427378a commit d23c3c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lspconfig/server_configurations/bufls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local bin_name = 'bufls'
local cmd = { bin_name, 'serve' }

if vim.fn.has 'win32' == 1 then
cmd = { 'cmd.exe', '/C', bin_name, 'start' }
cmd = { 'cmd.exe', '/C', bin_name, 'serve' }
end

return {
Expand Down

0 comments on commit d23c3c3

Please sign in to comment.