Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
默认情况下,emacs 包装长行。但是,当我使用 ctrl-x 3 分割屏幕时,两个屏幕会截断长行。无论屏幕是否拆分,如何让 emacs 表现相同。我希望它总是包裹长线,从不截断。
谢谢
把它放在你的初始化文件中:
(setq truncate-partial-width-windows nil)
一些背景:
默认情况下,当窗口宽度小于 50 列时(默认情况下),Emacs 会切换到行截断。这是因为在窄窗口中使用续行会使文本难以阅读。truncate-partial-width-windows您可以在 Emacs 切换到使用变量的行截断之前控制列数。将其设置为nil意味着 Emacs 将尊重truncate-lines变量中的内容。
truncate-partial-width-windows
nil
truncate-lines