如何在Atom编辑器中自动缩进代码?在其他编辑器中,您通常可以选择一些代码并自动缩进。

还有快捷键吗?


我在菜单中找到了这个选项,在编辑>行>自动缩进下。它似乎没有默认的键映射绑定。

你可以尝试添加一个键映射(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'

Package auto-indent的存在是为了通过以下快捷方式对整个文件应用自动缩进:

ctrl + shift + i

or

CMD+移位+I

软件包网址:https://atom.io/packages/auto-indent


如果你有热键的问题,尝试打开键绑定解析器窗口Cmd + ..它会实时显示你正在按的键。

例如,Cmd + Shift + '实际上是Cmd + "


您可以快速打开命令面板并在那里执行 Cmd + Shift + p搜索编辑器:自动缩进:


公认的答案是可行的,但你必须先做一个“全选”——每次都是——我太懒了。

事实证明,这并不是非常微不足道的——我想我在这里发布这篇文章是为了节省志同道合的人花30分钟来追踪所有这些内容。-另外注意:这种方法在完成时恢复原始的选择(它发生得如此之快,你甚至没有注意到选择曾经被改变)。

1)。首先,添加一个自定义命令到你的init脚本(File->打开你的init脚本,然后粘贴在底部):

atom.commands.add 'atom-text-editor', 'custom:reformat', ->
    editor = atom.workspace.getActiveTextEditor();
    oldRanges = editor.getSelectedBufferRanges();
    editor.selectAll();
    atom.commands.dispatch(atom.views.getView(editor), 'editor:auto-indent')
    editor.setSelectedBufferRanges(oldRanges);

2)。绑定"custom:reformat"到一个键(File->打开你的Keymap,然后粘贴在底部):

'atom-text-editor':
    'ctrl-alt-d': 'custom:reformat'

3)。重新启动Atom(初始化。Coffee脚本仅在atom第一次启动时运行)。


我更喜欢使用原子美化,CTRL+ALT+B(在linux中,也可能在windows中)处理更好的各种格式,它也是自定义每个文件格式。

更多详情请访问:https://atom.io/packages/atom-beautify


这对我来说很管用:

'atom-workspace atom-text-editor':
    'ctrl-alt-a': 'editor:auto-indent'

你必须先用ctrl-a选择所有。


这是我找到的最好的帮助:

https://atom.io/packages/atom-beautify

这个包可以安装在Atom中,然后按CTRL+ALT+B解决这个问题。


你也可以尝试添加一个键映射来自动选择文件中的所有代码并缩进它:

'atom-text-editor':
  'ctrl-alt-l': 'auto-indent:apply'

我在写一些绝妙的代码,保存时不会自动格式化。我所做的是右键单击代码窗格,然后选择ESLint Fix。这就固定了我的凹痕。


在Linux上

(KDE试训)

菜单中有一个选项,在编辑>行>自动缩进或按Cmd + Shift + p,搜索编辑器:自动缩进,输入“ai”

注意:在KDE中,ctrl-alt-l已经全局设置为“锁屏”,所以最好使用ctrl-alt-i。

你可以在Atom中添加一个键映射:

Cmd + Shift + p,搜索“Settings View: Show Keybindings” 点击“你的keymap文件” 在这里添加一个像这样的部分: “atom-text-editor”: “ctrl-alt-i”:“编辑:自动缩进

如果缩进不起作用,这可能是Atom无法识别文件结束的原因。然后添加对您的语言的支持,例如“Lua”,安装包“language- Lua”。

如果您的语言无法识别文件:

打开~/.atom/config. conf文件。cson文件(按CTRL+SHIFT+p输入“open config”) 在core下面添加/编辑customFileTypes section,如下所示: 核心: customFileTypes: ”源。lua”:( “配置” ] “text.html.php”:( “thtml” ]

(您可以找到这些语言的作用域名称(“source. exe”)。Lua ", "text.html.php"…)


如果您习惯于Eclipse IDE或Netbeans,您可以使用Eclipse -keybindings包(https://atom.io/packages/eclipse-keybindings):)

这个Atom包为Atom提供了Eclipse IDE键映射。目前,Eclipse快捷方式直接映射到现有的Atom命令。

要格式化文件中的所有行,只需使用:Ctrl+Shift+F。


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.