jEdit 中的智能感知
有谁知道有一个为 jEdit 提供智能感知的插件吗? 这篇文章似乎表明存在某些东西,但我不知道如何让它在我的系统上运行。目前,我主要对 Java 感兴趣。
Does anyone know of a plug-in that provides intellisense for jEdit? This post seems to indicate something exists, but I'm not sure how to get it working on my system. For now, I'm mainly interested in Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
IntelliSense 是这个名字,微软给出了他们的自动完成的实现。因此,您将没有 jEdit 的 IntelliSense(因为 Microsoft 不为 jEdit 提供插件),但您有一些自动完成的实现:
插件可以通过插件管理器轻松安装。
IntelliSense is the name, Microsoft gave their implementation of autocompletion. So you will have no IntelliSense for jEdit (as Microsoft does not provide plugins for jEdit), but you have some implementations for autocompletion:
Plugins can be easily installed through the plugin-manager.
JEdit 不支持开箱即用的智能感知。有一些插件,但我不确定它们的功效,也不确定是否有适用于 Java 的插件。
它确实具有开箱即用的一件事,那就是根据所有打开的缓冲区中的单词自动完成,这比一击即中要好。该功能称为“完整单词”,完成单词的默认键绑定是 ctrl+b。此功能记录在此处。
有一个带有插件 TextAutocomplete 的调整版本。
JEdit doesn't support intelli-sense out of the box. There are plugins, but I'm not sure of their efficacy nor whether one is available for Java.
One thing it does have out of the box, that is better than a kick in the teeth, is auto-complete based on the words that are in all the open buffers. The feature is called "Complete Word" and the default key-binding to complete a word is ctrl+b. This feature is documented here.
There is a tweaked version with plugin TextAutocomplete.
也请查看 CtagsInterface 。使用 Ctags 与其他人完成类似的工作,并且我认为更好:可以配置为搜索当前项目或项目 + 依赖项中的函数/变量,而不仅仅是打开缓冲区。还提供预览并建议完整签名(如果有)。
Check out CtagsInterface too. Does a similar job to the others using Ctags and is nicer I think: can be configured to search for functions/variables in the current project or project + dependencies rather than just open buffers. Also has a preview and suggests full signatures if available.