Skip to content

Commit e6477af

Browse files
committed
changelog
1 parent 42bddab commit e6477af

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
- Add way to autocomplete an exhaustive switch statement for identifiers. Example: an identifier that's a variant can have a switch autoinserted matching all variant cases. https://github.com/rescript-lang/rescript-vscode/pull/699
3030
- Support typed expression completion for lowercase (builtin) JSX tags. https://github.com/rescript-lang/rescript-vscode/pull/702
3131
- Support typed expression completion driven by type annotations. https://github.com/rescript-lang/rescript-vscode/pull/711
32+
- Completion for lowercase JSX elements, treating them like HTML elements. https://github.com/rescript-lang/rescript-vscode/pull/719
3233

3334
#### :nail_care: Polish
3435

analysis/src/CompletionJsx.ml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,8 @@ let domLabels =
487487
("suppressContentEditableWarning", bool);
488488
]
489489

490+
(* List and explanations taken from
491+
https://www.tutorialrepublic.com/html-reference/html5-tags.php. *)
490492
let htmlElements =
491493
[
492494
("a", "Defines a hyperlink.", false);

0 commit comments

Comments
 (0)