You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When delta truncates a line because wrap-max-lines has been reached, it adds a hardcoded β character that can't be customized like --wrap-left-symbol and that doesn't follow inline-hint-style.
The truncation character is defined in config.rs as: truncation_symbol: format!("{}β{}", ansi::ANSI_SGR_REVERSE, ansi::ANSI_SGR_RESET),
Ideally it would follow inline-hint-style and the character could be customized with something like --truncation-symbol
In the screenshot below, note how the wrap markings have a magenta background and the truncation symbol shows with a white background.
The text was updated successfully, but these errors were encountered:
When delta truncates a line because
wrap-max-lines
has been reached, it adds a hardcodedβ
character that can't be customized like--wrap-left-symbol
and that doesn't followinline-hint-style
.The truncation character is defined in
config.rs
as:truncation_symbol: format!("{}β{}", ansi::ANSI_SGR_REVERSE, ansi::ANSI_SGR_RESET),
Ideally it would follow
inline-hint-style
and the character could be customized with something like--truncation-symbol
In the screenshot below, note how the wrap markings have a magenta background and the truncation symbol shows with a white background.
The text was updated successfully, but these errors were encountered: