Netbeans CSS 自动格式

发布于 2024-11-01 08:54:33 字数 128 浏览 0 评论 0原文

在 Netbeans 6.9.1(PHP 包)中,代码格式(ALT+SHIFT+F)似乎不适用于 CSS 文件,那是当我尝试运行它时什么也没有发生。这是正常的还是我错过了什么?

In Netbeans 6.9.1 (PHP bundle) the code format (ALT+SHIFT+F) doesn't seem to work on CSS files, that is when I try to run it nothing happens. Is it normal or am I missing something?

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

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

发布评论

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

评论(2

雨落□心尘 2024-11-08 08:54:33

我已经在我的 Neatbeans 版本(也是 6.9.1)中检查过它,它似乎工作正常。

如果它不适合您,也许您需要检查您的键盘映射设置。

为此,

  1. 单击“工具”

  2. 选择选项

  3. 选择“键盘映射”选项卡

  4. 执行 Alt+Shift+ “在快捷方式中搜索”输入字段中的 F 键盘映射

  5. 确保您获得以下信息:

    操作 = 格式
    
    快捷键 = Alt+Shift+F
    
    类别 = 来源
    

还要检查选项面板编辑器部分下的格式选项卡中是否设置了制表符和缩进。

希望有帮助,
汤姆

I've check it in my version of Neatbeans (Also 6.9.1) and it seems to work fine.

If it's not working for you, perhaps you need to check your Keymap settings.

To do so,

  1. click Tools

  2. Choose Options

  3. Select the Keymap tab

  4. Perform the Alt+Shift+F keymap in the "Search in shortcuts" input field

  5. Make sure you get the following:

    Actions = Format
    
    Shortcut = Alt+Shift+F
    
    Category = Source
    

Also check that your tabs and indents are setup in the Formatting tab under the Editor Section of the Options panel.

Hope that helps,
Tom

心安伴我暖 2024-11-08 08:54:33

(使用 Netbeans 12.0 测试)
您可以使用正则表达式添加换行符:

  1. Ctrl+H 或单击菜单编辑 ->替换...
  2. 查找内容:“([{};])”(不带引号)
  3. 激活正则表达式(带有标题 .* 或 Alt+G 的按钮)
  4. 替换为: "$1\n" (不带引号)
  5. 替换全部

然后你可以使用 Alt+Shift+F 来自动缩进

(tested with Netbeans 12.0)
You can use regular expressions to add newlines:

  1. press Ctrl+H or click Menu Edit -> Replace...
  2. Find What: "([{};])" (without quotes)
  3. activate regular expressions (button with caption .* or Alt+G)
  4. Replace With: "$1\n" (without quotes)
  5. Replace All

Then you can use Alt+Shift+F to auto-indent

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