jEdit 中的智能感知

发布于 2024-10-11 11:15:04 字数 158 浏览 2 评论 0原文

有谁知道有一个为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

幻想少年梦 2024-10-18 11:15:04

IntelliSense 是这个名字,微软给出了他们的自动完成的实现。因此,您将没有 jEdit 的 IntelliSense(因为 Microsoft 不为 jEdit 提供插件),但您有一些自动完成的实现:

  • JavaSideKick:为 Java 提供自动完成功能(以及其他一些帮助)
  • SideKick :编码帮助程序的通用框架,由 JavaSideKick TextAutocomplete 使用
  • :根据 Ross Rogers 的推荐,将使用同一缓冲区中的单词提供自动补全
  • Completion:通用代码完成 ülugin

插件可以通过插件管理器轻松安装。

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:

  • JavaSideKick: provides autocompletion for Java (and some other helps)
  • SideKick: general framework for coding-helpers, used by JavaSideKick
  • TextAutocomplete: as recommended by Ross Rogers will provide autocompletion using words in the same buffer
  • Completion: general Code-Completion ülugin

Plugins can be easily installed through the plugin-manager.

一杆小烟枪 2024-10-18 11:15:04

JEdi​​t 不支持开箱即用的智能感知。有一些插件,但我不确定它们的功效,也不确定是否有适用于 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.

三月梨花 2024-10-18 11:15:04

也请查看 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文