We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b34be1 commit fc1aeb1Copy full SHA for fc1aeb1
CHANGELOG.md
@@ -16,6 +16,10 @@
16
17
- Docstring template Code Action. https://github.com/rescript-lang/rescript-vscode/pull/764
18
19
+#### :bug: Bug Fix
20
+
21
+- Fix URL scheme for Code Action. https://github.com/rescript-lang/rescript-vscode/pull/748
22
23
## 1.16.0
24
25
#### :rocket: New Feature
analysis/src/CodeActions.ml
@@ -6,6 +6,7 @@ let stringifyCodeActions codeActions =
6
(codeActions |> List.map Protocol.stringifyCodeAction |> Protocol.array)
7
8
let make ~title ~kind ~uri ~newText ~range =
9
+ let uri = uri |> Uri.fromPath |> Uri.toString in
10
{
11
Protocol.title;
12
codeActionKind = kind;
0 commit comments