File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Unreleased
2
+
3
+ ## Fixes
4
+
5
+ - Deactivate the ` jump ` code actions by default. Clients can enable them with
6
+ the ` merlinJumpCodeActions ` configuration option. Alternatively a custom
7
+ request is provided for ad hoc use of the feature. (#1411 )
8
+
1
9
# 1.20.0
2
10
3
11
## Features
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ let compute server (params : CodeActionParams.t) =
118
118
let open_related = Action_open_related. for_uri capabilities doc in
119
119
let * merlin_jumps =
120
120
match state.configuration.data.merlin_jump_code_actions with
121
- | Some { enable = true } | None -> Action_jump. code_actions doc params capabilities
122
- | Some { enable = false } -> Fiber. return []
121
+ | Some { enable = true } -> Action_jump. code_actions doc params capabilities
122
+ | Some { enable = false } | None -> Fiber. return []
123
123
in
124
124
(match Document. syntax doc with
125
125
| Ocamllex | Menhir | Cram | Dune ->
You can’t perform that action at this time.
0 commit comments