小编Gey*_*Bem的帖子

C在Emacs中的评论 - Linux内核风格

我正在使用

(setq-default comment-style 'multi-line)
Run Code Online (Sandbox Code Playgroud)

我所在地区的评论在做的时候M-;是:

/* void main()
 * {
 *  int i;
 *  int b;
 *  printf("format string");
 * } */
Run Code Online (Sandbox Code Playgroud)

但我希望它们看起来像这样:

/* 
 * void main()
 * {
 *  int i;
 *  int b;
 *  printf("format string");
 * }
 */
Run Code Online (Sandbox Code Playgroud)

我需要改变什么?

emacs comments elisp

4
推荐指数
1
解决办法
566
查看次数

标签 统计

comments ×1

elisp ×1

emacs ×1