Skip to content

Commit

Permalink
Highlight binary numbers as usual in types
Browse files Browse the repository at this point in the history
Fixes #1549
  • Loading branch information
KronicDeth committed Jun 4, 2023
1 parent 310b770 commit e24b585
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,10 @@
* Skip finding `mix.exs` for OTP apps if it can't be read.
* [#3251](https://github.com/KronicDeth/intellij-elixir/pull/3251) - [@KronicDeth](https://github.com/KronicDeth)
* Include `mix new` stderr in `IOException` for better triage.
* [#3251](https://github.com/KronicDeth/intellij-elixir/pull/3251) - [@KronicDeth](https://github.com/KronicDeth)
* Include `mix new` stderr in `IOException` for better triage.
* [#3252](https://github.com/KronicDeth/intellij-elixir/pull/3252) - [@KronicDeth](https://github.com/KronicDeth)
* Highlight binary numbers as usual in types.

## v15.0.1

Expand Down
1 change: 1 addition & 0 deletions resources/META-INF/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ <h1>v15.0.2</h1>
<li><code>findModuleForPsiElement</code> in <code>mostSpecificSdk</code> in read action.</li>
<li>Skip finding <code>mix.exs</code> for OTP apps if it can't be read.</li>
<li>Include <code>mix new</code> stderr in <code>IOException</code> for better triage.</li>
<li>Highlight binary numbers as usual in types.</li>
</ul>
</li>
</ul>
Expand Down
1 change: 1 addition & 0 deletions src/org/elixir_lang/annotator/ModuleAttribute.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1069,6 +1069,7 @@ class ModuleAttribute : Annotator, DumbAware {
is ElixirAtomKeyword,
is ElixirBitString,
is ElixirCharToken,
is ElixirBinaryWholeNumber,
is ElixirDecimalWholeNumber,
// Fixes #2583
is ElixirEmptyParentheses,
Expand Down

0 comments on commit e24b585

Please sign in to comment.