Skip to content

Commit 9301c88

Browse files
authored
Update changelog for VSCode language-id potentially breaking change (elixir-editors#228)
1 parent 5715d52 commit 9301c88

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ VSCode:
1515
- Add basic support for `.html.leex` files for Phoenix LiveView (thanks [oskarkook](https://github.com/oskarkook)) [#82](https://github.com/elixir-lsp/vscode-elixir-ls/pull/82)
1616
- Add filetype and watcher for `.html.leex` files for Phoenix LiveView (thanks [Byron Hambly](https://github.com/delta1)) [#83](https://github.com/elixir-lsp/vscode-elixir-ls/pull/83)
1717

18+
VSCode potentially breaking changes:
19+
- Change language id to be lowercase kebab-case in accordance with [VSCode guidelines](https://code.visualstudio.com/docs/languages/identifiers#_new-identifier-guidelines). This also fixes an issue displaying the elixir logo for html.eex files. (thanks [Matt Furden](https://github.com/zolrath)) [#87](https://github.com/elixir-lsp/vscode-elixir-ls/pull/87)
20+
- This changes the language id's `EEx`->`eex` and `HTML (EEx)`->`html-eex`
21+
- If you have customized your emmet configuration configuration then you need to update it:
22+
- Open VSCode and hit `Ctrl+Shift+P` or `Cmd+Shift+P` and type `"Preference: Open Settings (JSON)"`
23+
- Add or edit your `emmet.includedLanguages` to include the new Language Id:
24+
```json
25+
"emmet.includeLanguages": {
26+
"html-eex": "html"
27+
}
28+
```
29+
1830
### v0.3.3: 15 Apr 2020
1931

2032
Meta:

0 commit comments

Comments
 (0)