diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-05-23 16:16:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 18:16:34 +0400 |
commit | 8dc27cebce277392bda3ef27671750990e1bde4f (patch) | |
tree | 91f1e40dca76df5bff62590cd9c5a6496e404bf0 /CHANGELOG.md | |
parent | e9d4ac2a6ba5347998bd5d9eff1656b0c82e22e3 (diff) | |
download | r-alacritty-8dc27cebce277392bda3ef27671750990e1bde4f.tar.gz r-alacritty-8dc27cebce277392bda3ef27671750990e1bde4f.tar.bz2 r-alacritty-8dc27cebce277392bda3ef27671750990e1bde4f.zip |
Fix error with missing imports
This fixes a regression, likely introduced in 5d173f6df, which changed
the severity of missing imports from `info` back to `error`.
The cause of this issue was a more complicated error handling mechanism,
which explicitly translated IO errors to a separate enum variant without
accounting for it in all scenarios.
While retrospectively this seems completely unnecessary to me, it did
mean shorter error messages in case the main config file was not found.
To preserve the benefits of both approaches, explicit handling for the
`NotFound` IO error has been added when loading the main configuration
file.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c6aafe3..91536648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ Notable changes to the `alacritty_terminal` crate are documented in its - While terminal in mouse mode, mouse bindings that used the shift modifier and had multiple actions only performed the first action - Leaking FDs when closing windows on Unix systems +- Config emitting errors for non-existent import paths ## 0.13.2 |