In a GUI Emacs without fringes, I would like to get rid of the '$' at the end of truncated lines such that lines can use the fill width of the window. I've tried:
(set-display-table-slot standard-display-table 'truncation 0)
: this replaced$
with a space (or an empty slot).(set-display-table-slot standard-display-table 'truncation nil)
: this fall back to$
My question is thus how to display truncated lines without any truncation symbol on the right?
Here is a small mockup:
a) |Truncated lin$| -> Normal behavior
b) |Truncated lin…| -> Truncation symbol set to ?\…
c) |Truncated lin | -> Truncation symbol set to 0
d) |Truncated line| -> What I would like to obtain