我突出显示超过 80 个字符的行
M-x highlight-lines-matching-regexp RET .\{81\} RET hi-yellow RET
我希望 emacs 自动为我的所有缓冲区启用此功能。
我试过了
(add-hook 'after-load-functions
'(lambda () ('highlight-lines-matching-regexp ".\{81\}" 'hi-yellow)))
正如我如何使 emacs 突出显示超过 80 个字符的行中所写的那样?但它不起作用。它说
run-hook-with-args: Wrong number of arguments: (lambda nil (highlight-lines-matching-regexp ".{81}" (quote hi-yellow))), 1
如何告诉 emacs 将其自动应用于我的所有缓冲区?