Intellisense in jEdit

拥有回忆 提交于 2019-12-05 16:12:55

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.

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.

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.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!