File tree Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Expand file tree Collapse file tree 9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ nothing that should be noted
2727
2828## Server capability
2929
30- - property name: ` handleJumpTypedHole `
30+ - property name: ` handleToJumpTypedHole `
3131- property type: ` boolean `
3232
3333## Request
3434
35- - method: ` ocamllsp/jumpTypedHole `
35+ - method: ` ocamllsp/jumpToTypedHole `
3636- params:
3737
3838``` json
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ module Infer_intf = Req_infer_intf
44module Merlin_call_compatible = Req_merlin_call_compatible
55module Switch_impl_intf = Req_switch_impl_intf
66module Typed_holes = Req_typed_holes
7+ module Jump_to_typed_hole = Req_jump_to_typed_hole
78module Type_enclosing = Req_type_enclosing
89module Wrapping_ast_node = Req_wrapping_ast_node
910module Get_documentation = Req_get_documentation
1011module Type_search = Req_type_search
1112module Merlin_jump = Req_merlin_jump
12- module Jump_typed_hole = Req_jump_typed_hole
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ module Infer_intf = Req_infer_intf
66module Merlin_call_compatible = Req_merlin_call_compatible
77module Switch_impl_intf = Req_switch_impl_intf
88module Typed_holes = Req_typed_holes
9+ module Jump_to_typed_hole = Req_jump_to_typed_hole
910module Type_enclosing = Req_type_enclosing
1011module Wrapping_ast_node = Req_wrapping_ast_node
1112module Get_documentation = Req_get_documentation
1213module Type_search = Req_type_search
1314module Merlin_jump = Req_merlin_jump
14- module Jump_typed_hole = Req_jump_typed_hole
Original file line number Diff line number Diff line change 11open Import
22
3- let capability = " handleJumpTypedHole " , `Bool true
4- let meth = " ocamllsp/jumpTypedHole "
3+ let capability = " handleJumpToTypedHole " , `Bool true
4+ let meth = " ocamllsp/jumpToTypedHole "
55
66module Request_params = struct
77 type t =
File renamed without changes.
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ let initialize_info (client_capabilities : ClientCapabilities.t) : InitializeRes
8989 ; Req_switch_impl_intf. capability
9090 ; Req_infer_intf. capability
9191 ; Req_typed_holes. capability
92- ; Req_jump_typed_hole . capability
92+ ; Req_jump_to_typed_hole . capability
9393 ; Req_wrapping_ast_node. capability
9494 ; Dune. view_promotion_capability
9595 ; Req_hover_extended. capability
@@ -529,7 +529,7 @@ let on_request
529529 Fiber. return (Req_switch_impl_intf. on_request ~params state)) )
530530 ; Req_infer_intf. meth, Req_infer_intf. on_request
531531 ; Req_typed_holes. meth, Req_typed_holes. on_request
532- ; Req_jump_typed_hole . meth, Req_jump_typed_hole . on_request
532+ ; Req_jump_to_typed_hole . meth, Req_jump_to_typed_hole . on_request
533533 ; Req_merlin_call_compatible. meth, Req_merlin_call_compatible. on_request
534534 ; Req_type_enclosing. meth, Req_type_enclosing. on_request
535535 ; Req_get_documentation. meth, Req_get_documentation. on_request
Original file line number Diff line number Diff line change 5353 for_ppx
5454 hover_extended
5555 inlay_hints
56- jump_typed_hole
56+ jump_to_typed_hole
5757 merlin_call_compatible
5858 metrics
5959 semantic_hl_data
Original file line number Diff line number Diff line change 11open Test.Import
2- module Req = Ocaml_lsp_server.Custom_request. Jump_typed_hole
2+ module Req = Ocaml_lsp_server.Custom_request. Jump_to_typed_hole
33
44module Util = struct
55 let call ?direction ?range ~position client =
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ let%expect_test "start/stop" =
8787 " handleSwitchImplIntf" : true ,
8888 " handleInferIntf" : true ,
8989 " handleTypedHoles" : true ,
90- " handleJumpTypedHole " : true ,
90+ " handleJumpToTypedHole " : true ,
9191 " handleWrappingAstNode" : true ,
9292 " diagnostic_promotions" : true ,
9393 " handleHoverExtended" : true ,
You can’t perform that action at this time.
0 commit comments