Skip to content

Commit eab5d85

Browse files
committed
changelog
1 parent dadc18d commit eab5d85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
- Don't emit object keys in uppercase as namespace. https://github.com/rescript-lang/rescript-vscode/pull/798
3030
- Fix accidental output of extra `|` when producing exhaustive switch code for polyvariants. https://github.com/rescript-lang/rescript-vscode/pull/805
3131
- Fix JS syntax highlighting in single-line FFI extension points. https://github.com/rescript-lang/rescript-vscode/pull/807
32+
- Fix signature help in uncurried mode. https://github.com/rescript-lang/rescript-vscode/pull/809
3233

3334
## 1.18.0
3435

analysis/src/SignatureHelp.ml

+1-2
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
270270
in
271271
let expr (iterator : Ast_iterator.iterator) (expr : Parsetree.expression)
272272
=
273-
(*DumpAst.printExprItem ~pos ~indentation:0 expr |> print_endline;*)
274273
(match expr with
275274
(* Handle pipes, like someVar->someFunc(... *)
276275
| {
@@ -294,7 +293,7 @@ let signatureHelp ~path ~pos ~currentFile ~debug =
294293
searchForArgWithCursor ~isPipeExpr:true ~args
295294
in
296295
setFound (argAtCursor, exp, extractedArgs)
297-
(* Look for applying idents, like someIdent(...) *)
296+
(* Look for applying idents, like someIdent(...) *)
298297
| {
299298
pexp_desc = Pexp_apply (({pexp_desc = Pexp_ident _} as exp), args);
300299
pexp_loc;

0 commit comments

Comments
 (0)