如何在Atom编辑器中自动缩进代码?在其他编辑器中,您通常可以选择一些代码并自动缩进。
还有快捷键吗?
如何在Atom编辑器中自动缩进代码?在其他编辑器中,您通常可以选择一些代码并自动缩进。
还有快捷键吗?
当前回答
如果您习惯于Eclipse IDE或Netbeans,您可以使用Eclipse -keybindings包(https://atom.io/packages/eclipse-keybindings):)
这个Atom包为Atom提供了Eclipse IDE键映射。目前,Eclipse快捷方式直接映射到现有的Atom命令。
要格式化文件中的所有行,只需使用:Ctrl+Shift+F。
其他回答
你也可以尝试添加一个键映射来自动选择文件中的所有代码并缩进它:
'atom-text-editor':
'ctrl-alt-l': 'auto-indent:apply'
这是我找到的最好的帮助:
https://atom.io/packages/atom-beautify
这个包可以安装在Atom中,然后按CTRL+ALT+B解决这个问题。
我更喜欢使用原子美化,CTRL+ALT+B(在linux中,也可能在windows中)处理更好的各种格式,它也是自定义每个文件格式。
更多详情请访问:https://atom.io/packages/atom-beautify
我在菜单中找到了这个选项,在编辑>行>自动缩进下。它似乎没有默认的键映射绑定。
你可以尝试添加一个键映射(Atom > Open Your Keymap[在Windows: File > Settings > Keybindings > " Your Keymap File "),就像这样:
'atom-text-editor':
'cmd-alt-l': 'editor:auto-indent'
这对我很有用:)
Windows:
'atom-text-editor':
'ctrl-alt-l': 'editor:auto-indent'
Ctrl+Shift+i worked for me in PHP under Windows ... but some files did not react. Not being the brightest it took me a while to work out that it was the include files that were the problem. If you are using echo(' ... PHP ...') then the PHP does not get re-formatted. To get over this, create a temporary PHP file, say t.php, copy the PHP part into that, reindent it (Ctrl+Shift+i ... did I mention that?) and then copy the newly reformatted PHP back into the original file. Whilst this is a pain, it does give you correctly formatted PHP.