【求助】自动换行时会出现多余的空行,如何解决?

centaur emacs 中当我使用 org-mode 编辑文字时,如果使用无序列表或者在文字的行首中加入任意数目空格,会出现无意义的空行。

如下图所示:

使用的 emacs 版本和操作系统如下:

emacs :emacs 27.1 – centaur emacs

操作系统:windows10 ,linux

word wrap

请问具体要如何操作呢?当我把 (setq-default word-wrap t) 放入 custom.el 文件时并没有起作用。但我使用 ALT + X toggle-word-wrap 却可以使用

用这个配置可以让更多字符折行,不仅仅是空格。

(setq dlukes/org-category-table (copy-category-table))
(dolist (char '(?- ?+ ?_ ?/ ?| ?\ ?. ?,))
  (modify-category-entry char ?| dlukes/org-category-table))

(add-hook! '(org-mode-hook markdown-mode-hook)
  (set-category-table dlukes/org-category-table)
  (setq-local word-wrap-by-category t)
  (visual-fill-column-mode))

dotfiles/emacs/doom/config.org at 11ecdaa4ea36c57071a864d4df73ba8900928375 · dlukes/dotfiles (github.com)