Skip to content

Commit

Permalink
fix: helix: Use an empty array of commands for ExecuteCommandProvider…
Browse files Browse the repository at this point in the history
… cap as otherwise helix wont start
  • Loading branch information
artempyanykh committed Nov 29, 2023
1 parent 4c608dc commit 6c8e995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marksman/Server.fs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ module ServerUtil =
Full = { Delta = Some false } |> U2.Second |> Some }
RenameProvider = renameOptions
CodeLensProvider = Some { ResolveProvider = None }
ExecuteCommandProvider = Some { commands = None } }
ExecuteCommandProvider = Some { commands = Some [||] } }

type MarksmanStatusParams = { state: string; docCount: int }

Expand Down

0 comments on commit 6c8e995

Please sign in to comment.