Emacs总体上对区域的注释很好,但是有时我希望我可以将其前面的字符串更改为行。例如,在LaTeX中,我想让注释区域%
每行只使用一个而不是两个,即
% First line of commented region
% Second line of commented region
% Third line of commented region
代替
%% First line of commented region
%% Second line of commented region
%% Third line of commented region
我假设可以为latex-mode
中设置一些变量.emacs.el
,但是我找不到变量名。有任何想法吗?
comment-start
,对于乳胶模式为%
。正如@nanny指出的那样,该变量command-add
在诸如lisp和Latex之类的模式下使用,其中默认行为是comment-start
多次插入字符串。