在 phpstorm 中配置 css 自动完成

发布于 2025-01-05 04:46:05 字数 359 浏览 0 评论 0原文

使用 PHPStorm 3.0:

有没有办法驯服 css 文件中的自动完成功能? 我已经禁用了“首选项 > 编辑器 > 代码完成”中的所有内容,但我仍然观察到以下行为:

假设我尝试键入

.list {

}

当键入“.list”并按空格键添加 { 括号时,PHPStorm自动将 .list 扩展为

.list-style-type:

; 

几乎所有其他也作为 css 属性出现的单词都会发生这种情况甚至在注释中 关于如何在不改变 PHP/JS 自动完成行为的情况下阻止此行为的任何想法?

Using PHPStorm 3.0:

Is there a way to tame auto-completion in css files?
I've disabled everything in "Preferences > Editor > Code Completion", yet I still observe the following behavior:

Say I'd try to type

.list {

}

When typeing ".list" and pressing the space key to add a { bracket, PHPStorm automatically expands .list to

.list-style-type:

; 

This happens with almost every other word that also occurs as a css property even in comments
Any ideas on how to stop this without altering PHP/JS auto complete behavior?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ペ泪落弦音 2025-01-12 04:46:05

看来您为实时模板扩展设置了空间快捷方式(设置|实时模板)。如果是这样,则此行为是设计使然。

It seems you set Space shortcut for live template expanding (Settings | Live templates). If so, this behaviour is by design.

何其悲哀 2025-01-12 04:46:05

转到编辑器>一般>代码完成
取消选中 通过键入点、空格等插入选定的变体。

执行此操作后,.list { 的示例将不再插入 .list-style-type: 当在 { 之前按空格时。

Go to Editor > General > Code Completion.
Uncheck Insert selected variant by typing dot, space, ect.

After doing this, your example of .list { will no longer insert .list-style-type: when pressing space before the {.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文