gpt4 book ai didi

Emacs:随时随地单行注释

转载 作者:行者123 更新时间:2023-12-04 15:22:59 25 4
gpt4 key购买 nike

我想要一个交互式功能,可以使用 注释或取消注释区域只有一行评论模式的语法。

目前,在 PHP 中,当我注释掉时(使用 comment-or-uncomment-regioncomment-dwim )

This
Block of
Code

我明白了:
/* 
* This
* Block of
* Code
*/

但我需要的是这个:
// This
// Block of
// Code

我试图(不,让我改写一下:我花了几个晚上尝试所有可能的组合)使用 M-x customize-group RET comment ,特别是变量 comment-multi-linecomment-style但无济于事。

请注意,当我编辑 Javascript 时,js-mode 就是这样做的。我怎样才能在 中获得这种行为全部 模式?

最佳答案

尝试这个:

(add-hook 'php-mode-hook 'my-php-mode-hook)
(defun my-php-mode-hook ()
(set (make-local-variable 'comment-start) "//")
(set (make-local-variable 'comment-padding) " ")
(set (make-local-variable 'comment-end) "")
(set (make-local-variable 'comment-style) 'indent))

在 Emacs 24.3 中,您可以使用表单 (setq-local comment-start "//")反而。

关于Emacs:随时随地单行注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20703840/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com