This section deals with questions concerning the use of jEdit's plugins. Plugins are applications that share jEdit's memory space and user interface and provide a wide variety of functions and services.
1. General plugin questions | |
| |
Q: | Where can I get information on the latest available “official” plugins? |
A: | To get a listing of the latest plugins available for downloading from jEdit Plugin Central, use the Plugin Manager feature on jEdit's Plugin menu. You can also get more detailed descriptions of the plugins from the Plugin Central web site. |
Q: | Where can I get information on new plugins under development? |
A: | Many plugin developers make beta versions of their plugins available for downloading on the jEdit Community web site. Check the “Plugin beta versions” section of the web site's “Downloads” area. |
Q: | How do I install a plugin manually, without using the Plugin Manager? |
A: |
Copy the plugin's jar archive file (or files, if there are more than one)
to the |
Q: | Why can't plugins be loaded dynamically (i.e. not having to restart)? |
A: | There are plans to support such a feature in jEdit 4.2, however it will likely require a different plugin API, so existing plugins will need to be updated to take advantage of it. |
Q: | How do I write a plugin? |
A: | Writing a plugin requires a working knowledge of Java and some familiarity with jEdit's Plugin API. There is a tutorial on plugin development in the jEdit User's Guide. The source code distribution for jEdit also includes the source for an example plugin, Quick Notepad, which is discussed in the tutorial. To learn more about plugin development, take a look at the source code for other plugins, particularly those whose features or user interface you might use as a model. The jedit-devel mailing list and the message boards at jEdit Community are also available for specific questions. |
Q: | Is there an IRC (Internet Relay Chat) plugin for jEdit? |
A: | Yes. Open the Plugin Manager, then select Install plugins. You will find the IRC plugin which you can select for installation. |
Q: | Is it possible to execute your application from within jedit? |
A: | Yes. You can use the System shell of the Console plugin to run you application. The only limitation is that the plugin does not provide access to the application's standard input stream, so you will not be able to provide command-line input once the application is running. If the application requires such input, it will hang and you will have to terminate its process. Details are available in the help documentation for the Console plugin. |
Q: | Can I work with CVS/SVN/Perforce under jEdit? Is there a plugin for my favorite SCCS system? How can I send a command from jEdit so as to use SVN from within jEdit? |
A: | GruntSpud and jEditCvs are not currently maintained, but did offer CVS support. There is no GUI interface for exploring SVN repositories at the moment. You can use jEdit as your default editor from
CVS. Under Windows and the WinCVS
Open Source package, you can specify The ProjectViewer plugin has some support for reading the "entries" file for each directory, to decide which files to import. CVS/SVN are built-in The P4Plugin adds Perforce support to ProjectViewer, and has some other advanced features for working with Perforce repositories. |
Q: | Is there a debugger plugin? |
A: | A plugin based on the version 1.4 of the JSwat debugger application is currently available for download using jEdit's Plugin Manager feature. The JDebugger plugin is also available. |
Q: | Any development on integrating an XSL parser? It would be great to have the possibility to do XSL + XSLT -> XHTML development in the same environment as other development. |
A: | There is currently one plugin available called XSLT. The XSLT plugin provides features for: transforming XML using XSL transformation stylesheets; evaluating XPath expressions on XML and displaying results; and indenting XML. |
Q: | Is there a plugin to enable editing of remote files over FTP or SSH? |
A: |
The FTP plugin allows remote editing of files over the |