问题标签 [autoformatting]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
204 浏览

css - Aptana3 CSS 缩进

所以我刚刚切换到Aptana3。效果很好,但一方面。在我的偏好中,我可以更改我的缩进在我的文件中的工作方式。我希望它们更大一些(比如 4 个空格)。这适用于我使用的所有文件类型,除了 CSS。我使用了 2 个空格的缩进,这对我来说太小了。问题是,我无法改变它。

有人有什么想法吗?

0 投票
1 回答
179 浏览

xcode - 在 XCode 中,有没有办法在我完成一个块时自动缩进行

我以为我以前有这个,但我一定是改变了一个设置或什么的......

但是说我有一些代码,

但现在我想要一个 if 语句来包装它

在我放置“}”之后,是否有一个设置会自动缩进块中的这两行?

提前致谢!

0 投票
1 回答
141 浏览

java - 变量的 Eclipse 自动格式化初始化

通常 Eclipse 会自动格式化初始化,如下所示:

我想要一个自动格式化规则来格式化初始化,如下所示:

有人知道我可以在哪里调整吗?

€dit:我想在构造函数中进行这种对齐。

提前致谢!

0 投票
1 回答
1526 浏览

php - Wordpress 短代码关闭 p 标签被添加

我正在尝试为我的 wordpress 主题创建一些短代码,但我遇到了 wordpress 添加关闭 p 标签的问题。

这是我在functions.php文件中的短代码

这是html中的输出结果:

请注意,里面有 2 个 p 标签,我怎样才能摆脱这些?

我还使用以下代码禁用了 wordpress 的自动格式化功能:

PS附带说明一下,无论如何我可以整理编码,请参见示例:

但更喜欢

0 投票
0 回答
76 浏览

visual-studio - Visual Studio 自动格式化

只是一点点。

Visual Studio 的自动格式化采用以下代码行:

并将其变成这行代码:

请注意它是如何在 href= 之后插入一个额外的引号的,因此代码不再起作用。

我可以关闭自动格式化,但我发现它很有帮助。任何想法如何调整它以阻止这种情况发生?

我的文件具有 .php 扩展名。

谢谢,

菲尔。

0 投票
1 回答
162 浏览

scala - 如何使 IntelliJ scala 自动格式化程序在打开花括号后停止移动评论?

例子:

自动格式化后,这将恢复为:

反正有没有取消这个特定的行为?我翻遍了设置,找不到任何东西...

谢谢

0 投票
1 回答
338 浏览

php - PhpStorm 在重新格式化时忽略生成的代码

PhpStorm 是否可能不会重新格式化从另一个程序生成的文件?/** @generatedFile */是否有将文件排除在重新格式化之外的 PHPDoc 注释(类似于)?

0 投票
2 回答
5224 浏览

php - How do I remove auto paragraph formatting for pages ONLY, and not posts (WordPress)

I'm familiar with this little trick already for removing auto paragraph formatting in WordPress:

...however adding this in functions.php removes paragraphs for the entire site. This is not what I want since the client needs to be able to make edits themselves (the paragraph formatting really helps them out on posts).

Where the auto paragraph insertions are particularly damaging is on the client's home page, where there are javascript snippets. So ideally, I would like to disable auto p formatting for this page alone, or all pages if necessary, and leave posts alone.

Any ideas? I can provide more information if needed.

Thanks in advance!


Edit:

Plugins I've tried: Php Exec, Raw HTML, Disable WordPress Autop, PS Disable Auto Formatting, Toggle wpautop

0 投票
0 回答
19 浏览

eclipse - 在许多参数上自定义 Eclipse 代码格式化程序

当从 Eclipse 定制自动格式化程序时,您有几个选项可用于多种情况下的标识策略。当涉及到带有许多参数的函数调用时,你们中的大多数人可能会得到这样的结果:

这里的其他人会发现这样的东西看起来更好更清晰吗?

有没有可能达到这样的结果?谢谢!

0 投票
1 回答
801 浏览

python - 自动格式化 Python 注释

是否有任何可用的 Python 脚本可以搜索文件并自动将所有文本包装在注释块中?我想:

  1. 该脚本采用太长的注释行并将它们自动换行到列指南。
  2. 该脚本用于获取包含 2 行以上的注释并尝试将它们放入更少的行中。

我不认为 autopep8 做 2,如果我错了,请纠正我。我正在使用 PyCharm,它的自动格式选项也不做 2。

我很想编写自己的脚本来执行此操作,因为我认为这不会花很长时间,但我想先与社区核实一下。