Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove Glyph at End of Truncated Lines

Tags:

terminal

emacs

When using Emacs 23 in a terminal with truncate-lines enabled Emacs adds a dollar sign to the end of each line, indicating the text continues past the edge of the screen. This bothers me and I would like to disable this feature or somehow hide the dollar sign. Is this possible? If so how would it be done?

Glyph at end of truncated line.

like image 871
joshwbrick Avatar asked Dec 03 '11 20:12

joshwbrick


1 Answers

Try with this:

 (set-display-table-slot standard-display-table 0 ?\ ) 
like image 134
angus Avatar answered Oct 05 '22 03:10

angus