We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a99f4 commit 9d99034Copy full SHA for 9d99034
1 file changed
CHANGELOG.md
@@ -7,7 +7,21 @@
7
**Improvements:**
8
9
- Upgrade to `rescript-vscode@1.7.0` (see changes [here](https://github.com/rescript-lang/rescript-vscode/blob/master/CHANGELOG.md#107))
10
- - Please note that auto-completetion for `@` / `->` / `~` is not implemented yet
+ - Includes autocompletion for `->` / `~` (labeled arguments).
11
+
12
+Example:
13
14
+```res
15
+let l = Belt.List.make(3, 1)
16
+l-> //starting here, you will get suggestions for functions that accept a Belt.List.t
17
18
+let test = (~name: string, ~age: int) => {
19
+ Js.log2(name, age)
20
+}
21
22
+test(~ // starting here, you will get suggestions for `name` and `age`
23
+```
24
25
- Improved syntax highlighting for polyvariants [#31](https://github.com/rescript-lang/vim-rescript/pull/31)
26
27
**Bugfixes:**
0 commit comments