gpt4 book ai didi

Emacs 的 PHP 模式

转载 作者:可可西里 更新时间:2023-11-01 13:39:45 25 4
gpt4 key购买 nike

我的 php 代码无法正确缩进时遇到问题...

我希望我的代码看起来像这样

if (foo)
{
print "i am indented";
}

但它总是看起来像这样:

if (foo)
{
print "i am not indented correctly";
}

我厌倦了谷歌搜索类似的东西,并尝试将以下内容添加到我的 .emacs,但它根本不起作用。

有什么想法吗?

 (add-hook 'php-mode-hook
(function (lambda ()
;; GNU style
(setq php-indent-level 4
php-continued-statement-offset 4
php-continued-brace-offset 0
php-brace-offset 0
php-brace-imaginary-offset 0
php-label-offset -4))))

最佳答案

自定义 c-default-style 变量。将此添加到您的 .emacs 文件中:

(setq c-default-style "bsd"
c-basic-offset 4)

Description of bsd style .

关于Emacs 的 PHP 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/168621/

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