如何在 Eclipse 中自动填充段落?
我想在 Eclipse 中自动填充一个段落为 80 个字符(或其他固定宽度)。 这可以通过 Emacs 中的键盘命令实现吗? 或者可能有一个插件(我在谷歌上没有找到任何东西)?
编辑:我不确定这是否相关,但我需要 Python 代码中的文档字符串(使用 PyDev 插件)。
I would like to auto-fill a paragraph to 80 characters (or some other fixed width) in Eclipse. Is this possible via a keyboard command like in Emacs? Or is there maybe a plugin (I did not find anything on google)?
Edit: I am not sure if this is relevant, but I need this for docstrings in Python code (using the PyDev plugin).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Ctrl+2+w 将段落换行到 Pydev 中(请参阅 Pydev 键绑定:http://pydev.org/ Manual_adv_keybindings.html)
You can wrap the paragraph in Pydev with Ctrl+2+w (see Pydev keybindings at: http://pydev.org/manual_adv_keybindings.html)
突出显示文本,然后按 Ctrl-Shift-F,或打开上下文菜单并选择源/格式。
Highlight the text, then press Ctrl-Shift-F, or open the context menu and select Source / Format.