mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Switch to tabpad
configuration option (#3458)
Virtual whitespace tabs are created from the `tab` character padded with `tabpad` up to the tab width.
This commit is contained in:
parent
e61c0b461c
commit
ed74e6d5d4
3 changed files with 12 additions and 5 deletions
|
@ -438,6 +438,7 @@ pub struct WhitespaceCharacters {
|
|||
pub space: char,
|
||||
pub nbsp: char,
|
||||
pub tab: char,
|
||||
pub tabpad: char,
|
||||
pub newline: char,
|
||||
}
|
||||
|
||||
|
@ -448,6 +449,7 @@ impl Default for WhitespaceCharacters {
|
|||
nbsp: '⍽', // U+237D
|
||||
tab: '→', // U+2192
|
||||
newline: '⏎', // U+23CE
|
||||
tabpad: ' ',
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue