emacs 换行和编号

emacs 换行和编号

我如何告诉 emacs 在第 80 个字符处换行?

我正在寻找一个可以放入的解决方案/.emacs

我把这个放进去了,/.emacs但是没用。

;; ========== Enable Line Numbering ==========                                         

(line-number-mode 1)

;; ========== Set the fill column ==========                                           

(setq-default fill-column 80)

答案1

我认为这是一个打字错误?

它应该是

 
(setq default-fill-column 80)

相关内容