0

With toggle-truncate-lines, there seems to be a limit on the width of the window when this setting works. If the window is smaller than allowed, it doesn't seem to work.

How can I remove this limit?

Jason Hunter
  • 519
  • 2
  • 9
  • Did you read `C-h f toggle-truncate-lines`? – phils Aug 15 '23 at 08:14
  • ah, great;), so (setq truncate-partial-width-windows 0) thanks – Jason Hunter Aug 15 '23 at 10:09
  • 1
    You're welcome; but if you're not using `C-h f` and `C-h v` (or `C-h o`) as a *habit* by now (your profile says "Member for 7 years, 8 months" with ~140 questions under your belt), something has gone rather awry. Make "asking Emacs" your first step whenever you have a question. – phils Aug 15 '23 at 11:21
  • Right, too quick on that one;). Generally, I'm good at searching. – Jason Hunter Aug 15 '23 at 12:47
  • Comments are ephemeral. How about self-answering and accepting to close this question out? – nega Aug 16 '23 at 04:37

1 Answers1

0

This is how you do it;)

(setq truncate-partial-width-windows 0)
Drew
  • 75,699
  • 9
  • 109
  • 225
Jason Hunter
  • 519
  • 2
  • 9