Eclipse PDT 中“要求”的快捷方式一个文件?
我正在使用 eclipse PDT 处理大型代码库,并且经常需要在文件开头添加大量 require_once 语句。是否有任何快捷方式(如 eclipse JDT 中那样)可以执行此操作?如果我可以避免每次想要包含文件时都必须写出文件的路径,那将非常有帮助。 谢谢!
I'm working with a large codebase using eclipse PDT and often need to add a lot of require_once statements at the beginning of the file. Are there any shortcuts (as there are in eclipse JDT) to do this? It would be super helpful if I could avoid always having to write out the path of a file each time I would like to include one.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在编辑器中输入
req
并按 Ctrl+Space。此(Ctrl+Space
)将弹出自动完成建议,您可以从中选择 require_once。另外,更新到 PDT 的最新版本。当我编写
req
时,它会自动选择require
或require_once
。Inside the editor type
req
and hit Ctrl+Space. This (Ctrl+Space
) will pop up the auto-complete suggestions from which you can choose require_once.Also, update to the last version of PDT. When I write
req
it offers automatically to chooserequire
orrequire_once
.