Eclipse 代码格式化
我已将开发环境从 Adobe DreamWeaver 切换到 Eclipse,并且有一个关于 Eclipse 环境的问题。每当我将代码部分从脚本的一个区域复制并粘贴到另一个区域时,缩进通常与周围的代码不一致。
有没有办法可以缩进/减少大部分代码,而不必逐行手动更正它们?
感谢您抽出时间。
I have switched my development environment from Adobe DreamWeaver to Eclipse, and I had one question regarding the Eclipse environment. Whenever I copy and paste sections of code from one area of a script to another, often times the indenting isn't consistent with the surrounding code.
Is there a way I can indent/outdent large sections of code instead of having to manually correct them on a line-by-line basis?
Thank you for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要缩进或减少缩进一段代码,您可以选择整个部分,然后按 Tab 或 Shift-Tab。
To indent or outdent a section of code, you can select the entire section and then press tab or shift-tab.
我在 Eclipse 中进行 Java 开发,为了格式化代码,我选择它并按 Ctrl + Shift + F。它也可以从菜单 -> 中找到。来源->格式。
请注意,我正在使用 Eclipse 3.5.1,但我认为这个组合键对于其他版本不会改变。
I do Java development in Eclipse and to format code I select it and press Ctrl + Shift + F. It is also available from Menu -> Source -> Format.
Note that I am working with Eclipse 3.5.1, but I dont think this key combination will change for other versions.