mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Mention required terminfo update when changing tabspaces
Changing tabspaces from the default (8) requires a corresponding update to the `it` item in the terminfo entry used. Some applications, like Emacs, rely on knowing the width of a tab, and will experience unexpected behavior if the terminfo data does not match the actual width used.
This commit is contained in:
parent
00bd098765
commit
05d40a8adc
2 changed files with 16 additions and 2 deletions
|
@ -56,7 +56,14 @@ scrolling:
|
|||
# to the terminal.
|
||||
auto_scroll: false
|
||||
|
||||
# Display tabs using this many cells (changes require restart)
|
||||
# Spaces per Tab
|
||||
#
|
||||
# This setting defines the width of a tab in cells. Changes to this
|
||||
# value require a restart to take effect.
|
||||
#
|
||||
# Some applications, like Emacs, rely on knowing about the width of a tab.
|
||||
# To prevent unexpected behavior in these applications, it's also required to
|
||||
# change the `it` value in terminfo when altering this setting.
|
||||
tabspaces: 8
|
||||
|
||||
# When true, bold text is drawn using the bright variant of colors.
|
||||
|
|
|
@ -54,7 +54,14 @@ scrolling:
|
|||
# to the terminal.
|
||||
auto_scroll: false
|
||||
|
||||
# Display tabs using this many cells (changes require restart)
|
||||
# Spaces per Tab
|
||||
#
|
||||
# This setting defines the width of a tab in cells. Changes to this
|
||||
# value require a restart to take effect.
|
||||
#
|
||||
# Some applications, like Emacs, rely on knowing about the width of a tab.
|
||||
# To prevent unexpected behavior in these applications, it's also required to
|
||||
# change the `it` value in terminfo when altering this setting.
|
||||
tabspaces: 8
|
||||
|
||||
# When true, bold text is drawn using the bright variant of colors.
|
||||
|
|
Loading…
Reference in a new issue