diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-11-01 17:23:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-01 17:23:49 +0000 |
commit | a7d95540384c0b37e75a4bedb0bff688fee7dcf1 (patch) | |
tree | 8f019477e5d27efbbff9872d3804c05882142eef /CHANGELOG.md | |
parent | f0579345ea2fbe4c091b9df2f4725c22395a5b72 (diff) | |
download | alacritty-a7d95540384c0b37e75a4bedb0bff688fee7dcf1.tar.gz alacritty-a7d95540384c0b37e75a4bedb0bff688fee7dcf1.zip |
Rework cursor configuration
There are a couple of cursor-related options in the Alacritty config
file now, however they aren't grouped together in any way.
To resolve this a new `cursor` field has been added where all cursor
configuration options (besides colors) have been moved.
The `custom_cursor_colors` option has also been removed, since it's not
necessary anymore. Simply making the `colors.cursor.*` fields optional,
allows overriding the cursor colors whenever one of them is present.
Like that the user doesn't have to think about a relation between two
separate configuration options.
This PR initially put the `hide_cursor_when_typing` variable under
`cursor.hide_when_typing`. However this field is completely unrelated to
the cursor, but instead relates to the mouse cursor.
Since the word `cursor` is already used for the active cell in the grid
of a terminal emulator, all occurences of the word `cursor` when talking
about the mouse have been replaced with the word `mouse`.
The configuration option has also been moved to
`mouse.hide_when_typing`, to make it clear what this option is changing.
This fixes #1080.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b5d8de01..94eb9d9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - When `mouse.url.launcher` is set, clicking on URLs will now open them with the specified program - New `mouse.url.modifiers` option to specify keyboard modifiers for opening URLs on click +### Changed + +- The `colors.cursor.text` and `colors.cursor.cursor` fields are optional now +- Moved `cursor_style` to `cursor.style` +- Moved `unfocused_hollow_cursor` to `cursor.unfocused_hollow` +- Moved `hide_cursor_when_typing` to `mouse.hide_when_typing` + +### Removed + +- The `custom_cursor_colors` config field was deleted, remove the `colors.cursor.*` options + to achieve the same behavior as setting it to `false` + ### Fixed - Fixed erroneous results when using the `indexed_colors` config option |