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:
A-Walrus 2022-08-21 07:54:02 +03:00 committed by GitHub
parent e61c0b461c
commit ed74e6d5d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 5 deletions

View file

@ -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: ' ',
}
}
}