是否有“取消制表符”的键盘快捷键? (将代码块移至左侧)在 Eclipse 或 Aptana Studio 中?
选择一段代码并按 Tab 键退出非常容易,但反过来又如何呢?
目前,我只是搜索并替换行开头的空格。 有什么更快的吗?
It's so easy to select a block of code and tab out, but how about the reverse?
Currently, I just search and replace for white space at the beginning of the line. Is there anything faster?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
在 Visual Studio 和大多数其他不错的 IDE 中,您只需执行 SHIFT+TAB 即可。 它的作用与 TAB 相反。
我认为并希望您提到的 IDE 也支持这一点。
In Visual Studio and most other half decent IDEs you can simply do SHIFT+TAB. It does the opposite of just TAB.
I would think and hope that the IDEs you mention support this as well.
Shift-tab 再次缩进 :)
标准快捷键包含在标准加速器< /em>.
您会在常见问题解答中有哪些编辑器键盘快捷键可用?。
Shift-tab outdents again :)
The standard shortcut keys are covered in Standard Accelerators.
You'll find many of the more esoteric ones on FAQ What editor keyboard shortcuts are available?.
以下是 untab 的一般答案:
在 Python IDLE 中: Ctrl + [
在 Eclipse 中:Shift + Tab
在 Visual Studio:Shift + Tab
Here is a general answer for untab:
In Python IDLE: Ctrl + [
In Eclipse: Shift + Tab
In Visual Studio: Shift + Tab
一般来说,Shift + Tab 适用于任何环境。
In general, Shift + Tab works for any environment.
Shift + Tab 在 Flex Builder (基于 Eclipse),所以希望它可以在常规 Eclipse 中工作:)
Shift + Tab does that in Flex Builder (based on Eclipse), so it hopefully should work in regular Eclipse :)
此解决方法在大多数情况下都有效。 它使用 Eclipse 的“智能插入”功能:
我希望这对在 Eclipse 中实现 Shift + TAB 有所帮助。
This workaround works most of the time. It uses Eclipse's 'smart insert' features instead:
I hope this helps until Shift + TAB is implemented in Eclipse.
在 PyCharm 中,只需使用 Shift + Tab 向左移动代码块。
In PyCharm, just use Shift + Tab to move a block of code left.
是的,在 PyCharm 中:Shift + Tab 工作正常。
Yes, in PyCharm: Shift + Tab works fine.
是的,您可以在 VS Code 中执行此操作 在 Shift + Tab 的帮助下,大多数 IDE 都可以实现同样的效果。
过程:
a) 选择您想要退回一选项卡的代码。
b) 按SHIFT + TAB
Yes, You can do this in VS Code & Same works in most of IDE with the help of Shift + Tab.
Process :
a) Select the code you want to take one tab back.
b) Press SHIFT + TAB
您可以通过转到窗口菜单 → 首选项,然后打开常规列表来完成此操作。 选择按键。
向下滚动按键列表,直到看到“Shift Left”。 单击该按钮。 在其下方,您会看到一些框,其中一个可以让您绑定一把钥匙。 它不接受 Shift + Tab,因此我将其绑定到 Shift + `。 应用应用并关闭,一切就绪。
You can do this by going to the Window menu → Preferences, and then open the General list. Choose Keys.
Scroll down the list of keys until you see "Shift Left". Click that. Below that, you'll see some boxes, one of which lets you bind a key. It won't accept Shift + Tab, so I bound it to Shift + `. Apply Apply and Close, and you're all set.
您还可以更改快捷方式。 使用 Command + K、Command + S 快捷键打开键盘快捷键菜单。 搜索“选项卡”并在列表中找到“outdent”。
You can also change the shortcut. Use the Command + K, Command + S shortcuts to open the Keyboard Shortcut menu. Search for the "tab" and find the "outdent" in the list.