pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

jedit: Import jedit-5.3.0 as wip/jedit



Module Name:	pkgsrc-wip
Committed By:	jared <jared.pkgsrc%gmail.com@localhost>
Pushed By:	jared
Date:		Mon Mar 13 10:56:23 2017 -0500
Changeset:	5669977d69cc016f3f9f892657a5a4e99f625979

Modified Files:
	Makefile
Added Files:
	jedit/DESCR
	jedit/Makefile
	jedit/PLIST
	jedit/TODO
	jedit/distinfo
	jedit/files/jedit.sh

Log Message:
jedit: Import jedit-5.3.0 as wip/jedit

jEdit is a mature programmer's text editor with hundreds (counting the time
developing plugins) of person-years of development behind it. While jEdit beats
many expensive development tools for features and ease of use, it is released as
free software with full source code, provided under the terms of the GPL 2.0.
The jEdit core, together with a large collection of plugins is maintained by a
world-wide developer team.

Other features include:

- Built-in macro language; extensible plugin architecture. Hundreds of macros
  and plugins available.
- Plugins can be downloaded and installed from within jEdit using the "plugin
  manager" feature.
- Auto indent, and syntax highlighting for more than 200 languages.
- Supports a large number of character encodings including UTF8 and Unicode.
- Folding for selectively hiding regions of text.
- Word wrap.
- Highly configurable and customizable.
- Every other feature, both basic and advanced, you would expect to find in a
  text editor.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=5669977d69cc016f3f9f892657a5a4e99f625979

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile             |    1 +
 jedit/DESCR          |   20 +
 jedit/Makefile       |   58 ++
 jedit/PLIST          | 1849 ++++++++++++++++++++++++++++++++++++++++++++++++++
 jedit/TODO           |    1 +
 jedit/distinfo       |    6 +
 jedit/files/jedit.sh |    5 +
 7 files changed, 1940 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index 23e8030893..8ae2ce4394 100644
--- a/Makefile
+++ b/Makefile
@@ -1442,6 +1442,7 @@ SUBDIR+=	jbmgen
 SUBDIR+=	jc
 SUBDIR+=	jellyfish
 SUBDIR+=	jellyfish2
+SUBDIR+=	jedit
 SUBDIR+=	jemboss-standalone
 SUBDIR+=	jgloss
 SUBDIR+=	jgraphx
diff --git a/jedit/DESCR b/jedit/DESCR
new file mode 100644
index 0000000000..bd1cc18c06
--- /dev/null
+++ b/jedit/DESCR
@@ -0,0 +1,20 @@
+jEdit is a mature programmer's text editor with hundreds (counting the time
+developing plugins) of person-years of development behind it. While jEdit beats
+many expensive development tools for features and ease of use, it is released as
+free software with full source code, provided under the terms of the GPL 2.0.
+The jEdit core, together with a large collection of plugins is maintained by a
+world-wide developer team.
+
+Other features include:
+
+- Built-in macro language; extensible plugin architecture. Hundreds of macros
+  and plugins available.
+- Plugins can be downloaded and installed from within jEdit using the "plugin
+  manager" feature.
+- Auto indent, and syntax highlighting for more than 200 languages.
+- Supports a large number of character encodings including UTF8 and Unicode.
+- Folding for selectively hiding regions of text.
+- Word wrap.
+- Highly configurable and customizable.
+- Every other feature, both basic and advanced, you would expect to find in a
+  text editor.
diff --git a/jedit/Makefile b/jedit/Makefile
new file mode 100644
index 0000000000..996b143445
--- /dev/null
+++ b/jedit/Makefile
@@ -0,0 +1,58 @@
+# $NetBSD$
+
+PKGBASE=	jedit
+VERSION=	5.3.0
+PKGNAME=	${PKGBASE}-${VERSION}
+DISTNAME=	${PKGBASE}${VERSION}install
+CATEGORIES=	editors
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE:=jedit/}
+EXTRACT_SUFX=	.jar
+
+MAINTAINER=	jared_pkgsrc%gmail.com@localhost
+HOMEPAGE=	http://jedit.org/
+COMMENT=	Text editor written in Java
+LICENSE=	gnu-gpl-v2
+
+NO_BUILD=	yes
+USE_JAVA=	run
+PKG_JVMS_ACCEPTED=  sun-jdk7 openjdk7 oracle-jdk8 openjdk8
+
+USE_TOOLS+=	unzip tar pax cp
+
+WRKSRC=		${WRKDIR}/${PKGBASE}_staging
+
+SHAREDIR=	${PREFIX}/share/${PKGBASE}
+
+AUTO_MKDIRS=	yes
+INSTALLATION_DIRS+=	${PKGMANDIR}/man1
+
+CHECK_SHLIBS_SUPPORTED=	no
+
+SUBST_CLASSES+=		launcher
+SUBST_STAGE.launcher=	pre-configure
+SUBST_FILES.launcher=	jedit
+SUBST_SED.launcher+=	-e 's,@PKG_JAVA_HOME@,'${PKG_JAVA_HOME:Q}',g'
+SUBST_SED.launcher+=	-e 's,@JEDIT_HOME@,'${SHAREDIR:Q}',g'
+
+post-extract:
+	${RUN} ${MKDIR} ${WRKSRC}
+	${RUN} unzip -q -d ${WRKDIR} ${WRKDIR}/${DISTNAME}${EXTRACT_SUFX}
+	${RUN} ${TAR} -C ${WRKSRC} -xjf ${WRKDIR}/installer/jedit-api.tar.bz2
+	${RUN} ${TAR} -C ${WRKSRC} -xjf ${WRKDIR}/installer/jedit-macros.tar.bz2
+	${RUN} ${TAR} -C ${WRKSRC} -xjf ${WRKDIR}/installer/jedit-program.tar.bz2
+	${RUN} ${CP} ${WRKDIR}/jedit.1 ${WRKSRC}
+	${RUN} ${CP} ${FILESDIR}/jedit.sh ${WRKSRC}/jedit
+
+do-install:
+	${RUN} ${INSTALL_DATA_DIR} ${DESTDIR}${SHAREDIR}
+	${RUN} for f in jars doc jedit.jar keymaps macros modes properties startup; \
+	do \
+		cd ${WRKSRC} && ${PAX} -rw -pm $${f} ${DESTDIR}${SHAREDIR}; \
+	done
+	${RUN} ${INSTALL_SCRIPT} ${WRKSRC}/jedit ${DESTDIR}${PREFIX}/bin
+
+post-install:
+	${RUN} ${INSTALL_MAN} ${WRKSRC}/jedit.1	${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
+
+.include "../../mk/java-vm.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/jedit/PLIST b/jedit/PLIST
new file mode 100644
index 0000000000..ba4e6fc475
--- /dev/null
+++ b/jedit/PLIST
@@ -0,0 +1,1849 @@
+@comment $NetBSD$
+bin/jedit
+man/man1/jedit.1
+share/jedit/doc/Apache.LICENSE.txt
+share/jedit/doc/CHANGES.txt
+share/jedit/doc/COPYING.DOC.txt
+share/jedit/doc/COPYING.PLUGINS.txt
+share/jedit/doc/COPYING.txt
+share/jedit/doc/CORE_GUIDELINES.txt
+share/jedit/doc/FAQ/appendix.html
+share/jedit/doc/FAQ/general.html
+share/jedit/doc/FAQ/index.html
+share/jedit/doc/FAQ/installation.html
+share/jedit/doc/FAQ/intro.html
+share/jedit/doc/FAQ/macros.html
+share/jedit/doc/FAQ/plugins.html
+share/jedit/doc/FAQ/problems.html
+share/jedit/doc/FAQ/toc.xml
+share/jedit/doc/FAQ/usage.html
+share/jedit/doc/README.txt
+share/jedit/doc/TODO.txt
+share/jedit/doc/api/allclasses-frame.html
+share/jedit/doc/api/allclasses-noframe.html
+share/jedit/doc/api/constant-values.html
+share/jedit/doc/api/deprecated-list.html
+share/jedit/doc/api/help-doc.html
+share/jedit/doc/api/index-files/index-1.html
+share/jedit/doc/api/index-files/index-10.html
+share/jedit/doc/api/index-files/index-11.html
+share/jedit/doc/api/index-files/index-12.html
+share/jedit/doc/api/index-files/index-13.html
+share/jedit/doc/api/index-files/index-14.html
+share/jedit/doc/api/index-files/index-15.html
+share/jedit/doc/api/index-files/index-16.html
+share/jedit/doc/api/index-files/index-17.html
+share/jedit/doc/api/index-files/index-18.html
+share/jedit/doc/api/index-files/index-19.html
+share/jedit/doc/api/index-files/index-2.html
+share/jedit/doc/api/index-files/index-20.html
+share/jedit/doc/api/index-files/index-21.html
+share/jedit/doc/api/index-files/index-22.html
+share/jedit/doc/api/index-files/index-23.html
+share/jedit/doc/api/index-files/index-24.html
+share/jedit/doc/api/index-files/index-25.html
+share/jedit/doc/api/index-files/index-26.html
+share/jedit/doc/api/index-files/index-3.html
+share/jedit/doc/api/index-files/index-4.html
+share/jedit/doc/api/index-files/index-5.html
+share/jedit/doc/api/index-files/index-6.html
+share/jedit/doc/api/index-files/index-7.html
+share/jedit/doc/api/index-files/index-8.html
+share/jedit/doc/api/index-files/index-9.html
+share/jedit/doc/api/index.html
+share/jedit/doc/api/org/gjt/sp/jedit/Abbrevs.html
+share/jedit/doc/api/org/gjt/sp/jedit/AbstractOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/ActionContext.html
+share/jedit/doc/api/org/gjt/sp/jedit/ActionSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/BeanShell.html
+share/jedit/doc/api/org/gjt/sp/jedit/BeanShellAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/BeanShellFacade.html
+share/jedit/doc/api/org/gjt/sp/jedit/Buffer.html
+share/jedit/doc/api/org/gjt/sp/jedit/BufferHistory.Entry.html
+share/jedit/doc/api/org/gjt/sp/jedit/BufferHistory.html
+share/jedit/doc/api/org/gjt/sp/jedit/Debug.html
+share/jedit/doc/api/org/gjt/sp/jedit/EBComponent.html
+share/jedit/doc/api/org/gjt/sp/jedit/EBMessage.html
+share/jedit/doc/api/org/gjt/sp/jedit/EBPlugin.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditAction.Wrapper.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditBus.EBHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditBus.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditPlugin.Broken.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditPlugin.Deferred.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditPlugin.html
+share/jedit/doc/api/org/gjt/sp/jedit/EditServer.html
+share/jedit/doc/api/org/gjt/sp/jedit/GUIUtilities.UnixWorkaround.html
+share/jedit/doc/api/org/gjt/sp/jedit/GUIUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/IPropertyManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/JARClassLoader.html
+share/jedit/doc/api/org/gjt/sp/jedit/JEditAbstractEditAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/JEditActionContext.html
+share/jedit/doc/api/org/gjt/sp/jedit/JEditActionSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/JEditBeanShellAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/Macros.Handler.html
+share/jedit/doc/api/org/gjt/sp/jedit/Macros.Macro.html
+share/jedit/doc/api/org/gjt/sp/jedit/Macros.Recorder.html
+share/jedit/doc/api/org/gjt/sp/jedit/Macros.html
+share/jedit/doc/api/org/gjt/sp/jedit/Marker.html
+share/jedit/doc/api/org/gjt/sp/jedit/MiscUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/Mode.html
+share/jedit/doc/api/org/gjt/sp/jedit/OperatingSystem.html
+share/jedit/doc/api/org/gjt/sp/jedit/OptionGroup.html
+share/jedit/doc/api/org/gjt/sp/jedit/OptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/PerspectiveManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/PluginJAR.PluginCacheEntry.html
+share/jedit/doc/api/org/gjt/sp/jedit/PluginJAR.html
+share/jedit/doc/api/org/gjt/sp/jedit/RegisterSaver.html
+share/jedit/doc/api/org/gjt/sp/jedit/Registers.ClipboardRegister.html
+share/jedit/doc/api/org/gjt/sp/jedit/Registers.Register.html
+share/jedit/doc/api/org/gjt/sp/jedit/Registers.html
+share/jedit/doc/api/org/gjt/sp/jedit/RegistersListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/ServiceManager.ServiceFoldHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/ServiceManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/SettingsXML.Saver.html
+share/jedit/doc/api/org/gjt/sp/jedit/SettingsXML.html
+share/jedit/doc/api/org/gjt/sp/jedit/SplitConfigParser.html
+share/jedit/doc/api/org/gjt/sp/jedit/TextUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/View.ViewConfig.html
+share/jedit/doc/api/org/gjt/sp/jedit/View.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/BrowserCommandsMenu.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/BrowserListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/FileCellRenderer.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/VFSBrowser.DirectoriesOnlyFilter.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/VFSBrowser.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/VFSDirectoryEntryTable.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/VFSDirectoryEntryTableModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/VFSFileChooserDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/VFSFileNameField.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/BrowserCommandsMenu.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/BrowserListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/FileCellRenderer.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/VFSBrowser.DirectoriesOnlyFilter.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/VFSBrowser.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/VFSDirectoryEntryTable.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/VFSDirectoryEntryTableModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/VFSFileChooserDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/class-use/VFSFileNameField.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/browser/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/BSHFormalComment.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/BSHPackageDeclaration.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/BshClassManager.Listener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/BshClassManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/BshIterator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/BshMethod.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/CallStack.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Capabilities.Unavailable.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Capabilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ClassGenerator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ClassGeneratorImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ClassGeneratorUtil.ConstructorArgs.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ClassGeneratorUtil.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ClassIdentifier.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ClassPathException.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/CollectionManager.BasicBshIterator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/CollectionManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ConsoleInterface.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/DelayedEvalBshMethod.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/EvalError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ExternalNameSpace.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Interpreter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/InterpreterError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/JavaCharStream.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Modifiers.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/NameSource.Listener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/NameSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/NameSpace.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ParseException.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Parser.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ParserConstants.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ParserTokenManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ParserTreeConstants.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Primitive.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/ReflectManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Remote.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/StringUtil.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/TargetError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/This.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Token.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/TokenMgrError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/UtilEvalError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/UtilTargetError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/Variable.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/XThis.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/BSHFormalComment.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/BSHPackageDeclaration.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/BshClassManager.Listener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/BshClassManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/BshIterator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/BshMethod.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/CallStack.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Capabilities.Unavailable.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Capabilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ClassGenerator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ClassGeneratorImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ClassGeneratorUtil.ConstructorArgs.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ClassGeneratorUtil.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ClassIdentifier.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ClassPathException.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/CollectionManager.BasicBshIterator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/CollectionManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ConsoleInterface.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/DelayedEvalBshMethod.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/EvalError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ExternalNameSpace.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Interpreter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/InterpreterError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/JavaCharStream.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Modifiers.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/NameSource.Listener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/NameSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/NameSpace.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ParseException.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Parser.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ParserConstants.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ParserTokenManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ParserTreeConstants.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Primitive.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/ReflectManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Remote.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/StringUtil.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/TargetError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/This.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Token.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/TokenMgrError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/UtilEvalError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/UtilTargetError.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/Variable.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/class-use/XThis.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassLoader.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassPath.AmbiguousName.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassPath.ClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassPath.DirClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassPath.GeneratedClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassPath.JarClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassPath.MappingFeedback.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/BshClassPath.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/ClassManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/ClassPathListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/DiscreteFilesClassLoader.ClassSourceMap.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/DiscreteFilesClassLoader.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassLoader.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassPath.AmbiguousName.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassPath.ClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassPath.DirClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassPath.GeneratedClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassPath.JarClassSource.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassPath.MappingFeedback.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/BshClassPath.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/ClassManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/ClassPathListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/DiscreteFilesClassLoader.ClassSourceMap.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/class-use/DiscreteFilesClassLoader.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/classpath/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/CollectionIterator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/CollectionManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/class-use/CollectionIterator.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/class-use/CollectionManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/collection/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/commands/class-use/dir.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/commands/dir.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/commands/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/commands/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/commands/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/commands/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/ClassVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/ClassWriter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/CodeVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/CodeWriter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/Constants.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/Label.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/Type.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/class-use/ClassVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/class-use/ClassWriter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/class-use/CodeVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/class-use/CodeWriter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/class-use/Constants.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/class-use/Label.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/class-use/Type.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/org/objectweb/asm/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/reflect/ReflectManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/reflect/class-use/ReflectManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/reflect/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/reflect/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/reflect/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bsh/reflect/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/BufferAdapter.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/BufferListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/BufferUndoListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/DefaultFoldHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/DummyFoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/ExplicitFoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/FoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/FoldHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/IndentFoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/JEditBuffer.PropValue.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/JEditBuffer.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/KillRing.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/LineManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/UndoManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/BufferAdapter.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/BufferListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/BufferUndoListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/DefaultFoldHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/DummyFoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/ExplicitFoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/FoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/FoldHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/IndentFoldHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/JEditBuffer.PropValue.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/JEditBuffer.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/KillRing.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/LineManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/class-use/UndoManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/buffer/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/BufferAutosaveRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/BufferIORequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/BufferInsertRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/BufferLoadRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/BufferSaveRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/IoTask.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/MarkersSaveRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/class-use/BufferAutosaveRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/class-use/BufferIORequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/class-use/BufferInsertRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/class-use/BufferLoadRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/class-use/BufferSaveRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/class-use/IoTask.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/class-use/MarkersSaveRequest.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferio/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/BufferSet.NameSorter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/BufferSet.PathSorter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/BufferSet.Scope.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/BufferSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/BufferSetAdapter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/BufferSetListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/BufferSetManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/class-use/BufferSet.NameSorter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/class-use/BufferSet.PathSorter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/class-use/BufferSet.Scope.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/class-use/BufferSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/class-use/BufferSetAdapter.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/class-use/BufferSetListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/class-use/BufferSetManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/bufferset/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Abbrevs.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/AbstractOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/ActionContext.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/ActionSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/BeanShell.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/BeanShellAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/BeanShellFacade.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Buffer.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/BufferHistory.Entry.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/BufferHistory.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Debug.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EBComponent.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EBMessage.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EBPlugin.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditAction.Wrapper.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditBus.EBHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditBus.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditPlugin.Broken.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditPlugin.Deferred.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditPlugin.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/EditServer.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/GUIUtilities.UnixWorkaround.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/GUIUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/IPropertyManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/JARClassLoader.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/JEditAbstractEditAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/JEditActionContext.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/JEditActionSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/JEditBeanShellAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Macros.Handler.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Macros.Macro.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Macros.Recorder.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Macros.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Marker.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/MiscUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Mode.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/OperatingSystem.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/OptionGroup.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/OptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/PerspectiveManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/PluginJAR.PluginCacheEntry.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/PluginJAR.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/RegisterSaver.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Registers.ClipboardRegister.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Registers.Register.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/Registers.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/RegistersListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/ServiceManager.ServiceFoldHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/ServiceManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/SettingsXML.Saver.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/SettingsXML.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/SplitConfigParser.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/TextUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/View.ViewConfig.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/View.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/jEdit.JEditPropertyManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/class-use/jEdit.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/JEditDataFlavor.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/JEditRichText.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/JEditTransferable.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/JEditTransferableService.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/ListVFSFileTransferable.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/RichJEditTextTransferableService.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/RichTextTransferable.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/StringTransferableService.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/TransferHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/JEditDataFlavor.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/JEditRichText.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/JEditTransferable.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/JEditTransferableService.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/ListVFSFileTransferable.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/RichJEditTextTransferableService.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/RichTextTransferable.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/StringTransferableService.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/class-use/TransferHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/datatransfer/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/AbbrevEditor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/AboutDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/AbstractContextOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ActionBar.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/AddAbbrevDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/AddModeDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/AnimatedIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/BeanShellErrorDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/BufferOptions.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/BufferSwitcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/CloseDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ColorWellButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/CompleteWord.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/CompletionPopup.Candidates.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/CompletionPopup.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ContextAddDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DefaultFocusComponent.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DefaultInputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindow.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowContainer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowManager.DockingArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowManager.DockingLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowManagerImpl.DockableWindowConfig.PerspectiveHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowManagerImpl.DockableWindowConfig.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockableWindowManagerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockingFrameworkProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DockingLayoutManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/DynamicContextMenuService.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/EditAbbrevDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/EnhancedButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/EnhancedDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ErrorListDialog.ErrorEntry.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ErrorListDialog.JTextPaneSized.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ErrorListDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ExtendedGridLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ExtendedGridLayoutConstraints.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/FilePropertiesDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/FilesChangedDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/FilteredListModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/FilteredTableModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/FloatingWindowContainer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/FontSelector.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/FontSelectorDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/GrabKeyDialog.KeyBinding.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/GrabKeyDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/HistoryModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/HistoryModelSaver.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/HistoryText.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/HistoryTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/HistoryTextField.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/InputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/JCheckBoxList.Entry.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/JCheckBoxList.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/JEditHistoryModelSaver.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/KeyEventTranslator.Key.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/KeyEventTranslator.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/KeyEventWorkaround.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ListModelEditor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/LogViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/MarkerViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/MutableListModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/NumericTextField.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/OptionsDialog.OptionTreeModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/OptionsDialog.PaneNameRenderer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/OptionsDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/PanelWindowContainer.RotatedTextIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/PanelWindowContainer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/PasteFromListDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/PasteSpecialDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/PingPongList.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/RegisterViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/RolloverButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/SelectLineRange.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ShortcutPrefixActiveEvent.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/SplashScreen.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/StatusBar.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/StyleEditor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/TaskMonitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/TextAreaDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/TipOfTheDay.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/ToolBarManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/VariableGridLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/AbbrevEditor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/AboutDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/AbstractContextOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ActionBar.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/AddAbbrevDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/AddModeDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/AnimatedIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/BeanShellErrorDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/BufferOptions.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/BufferSwitcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/CloseDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ColorWellButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/CompleteWord.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/CompletionPopup.Candidates.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/CompletionPopup.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ContextAddDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DefaultFocusComponent.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DefaultInputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindow.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowContainer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowManager.DockingArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowManager.DockingLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowManagerImpl.DockableWindowConfig.PerspectiveHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowManagerImpl.DockableWindowConfig.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowManagerImpl.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockableWindowManagerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockingFrameworkProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DockingLayoutManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/DynamicContextMenuService.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/EditAbbrevDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/EnhancedButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/EnhancedDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ErrorListDialog.ErrorEntry.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ErrorListDialog.JTextPaneSized.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ErrorListDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ExtendedGridLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ExtendedGridLayoutConstraints.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/FilePropertiesDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/FilesChangedDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/FilteredListModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/FilteredTableModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/FloatingWindowContainer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/FontSelector.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/FontSelectorDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/GrabKeyDialog.KeyBinding.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/GrabKeyDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/HistoryModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/HistoryModelSaver.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/HistoryText.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/HistoryTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/HistoryTextField.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/InputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/JCheckBoxList.Entry.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/JCheckBoxList.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/JEditHistoryModelSaver.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/KeyEventTranslator.Key.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/KeyEventTranslator.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/KeyEventWorkaround.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ListModelEditor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/LogViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/MarkerViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/MutableListModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/NumericTextField.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/OptionsDialog.OptionTreeModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/OptionsDialog.PaneNameRenderer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/OptionsDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/PanelWindowContainer.RotatedTextIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/PanelWindowContainer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/PasteFromListDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/PasteSpecialDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/PingPongList.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/RegisterViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/RolloverButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/SelectLineRange.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ShortcutPrefixActiveEvent.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/SplashScreen.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/StatusBar.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/StyleEditor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/TaskMonitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/TextAreaDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/TipOfTheDay.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/ToolBarManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/class-use/VariableGridLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/BufferSetWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/ClockWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/EncodingWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/ErrorsWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/FoldWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/IndentWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/LastModifiedWidgetFactory.LastModifiedWidget.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/LastModifiedWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/LineSepWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/MemoryStatusWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/ModeWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/MultiSelectWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/OverwriteWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/RectSelectWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/SelectionLengthWidgetFactory.SelectionLengthWidget.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/SelectionLengthWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/StatusWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/TaskMonitorWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/ToolTipLabel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/Widget.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/WrapWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/BufferSetWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/ClockWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/EncodingWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/ErrorsWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/FoldWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/IndentWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/LastModifiedWidgetFactory.LastModifiedWidget.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/LastModifiedWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/LineSepWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/MemoryStatusWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/ModeWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/MultiSelectWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/OverwriteWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/RectSelectWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/SelectionLengthWidgetFactory.SelectionLengthWidget.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/SelectionLengthWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/StatusWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/TaskMonitorWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/ToolTipLabel.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/Widget.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/class-use/WrapWidgetFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/statusbar/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/JEditSwingTrayIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/JEditTrayIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/JTrayIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/JTrayIconManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/class-use/JEditSwingTrayIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/class-use/JEditTrayIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/class-use/JTrayIcon.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/class-use/JTrayIconManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/gui/tray/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HelpHistoryModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HelpHistoryModelListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HelpSearchPanel.MouseHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HelpSearchPanel.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HelpTOCPanel.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HelpViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HelpViewerInterface.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/HistoryButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HelpHistoryModel.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HelpHistoryModelListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HelpSearchPanel.MouseHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HelpSearchPanel.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HelpTOCPanel.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HelpViewer.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HelpViewerInterface.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/class-use/HistoryButton.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/help/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/BracketIndentRule.Brackets.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/BracketIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/CloseBracketIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/DeepIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.AlignOffset.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.AlignParameter.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.Collapse.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.Decrease.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.Increase.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.NoIncrease.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.Reset.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/IndentRuleFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/OpenBracketIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/RegexpIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/WhitespaceRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/BracketIndentRule.Brackets.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/BracketIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/CloseBracketIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/DeepIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.AlignOffset.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.AlignParameter.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.Collapse.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.Decrease.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.Increase.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.NoIncrease.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.Reset.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentAction.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/IndentRuleFactory.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/OpenBracketIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/RegexpIndentRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/class-use/WhitespaceRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/indent/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/AbstractInputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/DefaultInputHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/InputHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/TextAreaInputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/class-use/AbstractInputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/class-use/DefaultInputHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/class-use/InputHandlerProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/class-use/TextAreaInputHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/input/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/AutoDetection.Result.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/AutoDetection.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/CharsetEncoding.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/CopyFileWorker.Behavior.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/CopyFileWorker.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/Encoding.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/EncodingDetector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/EncodingServer.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/EncodingWithBOM.Detector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/EncodingWithBOM.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/FavoritesVFS.Favorite.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/FavoritesVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/FileRootsVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/FileVFS.LocalFile.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/FileVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/GlobVFSFileFilter.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/LocalFileSaveTask.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/RegexEncodingDetector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/UrlVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/VFS.DirectoryEntryCompare.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/VFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/VFSFile.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/VFSFileFilter.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/VFSManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/XMLEncodingDetector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/AutoDetection.Result.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/AutoDetection.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/CharsetEncoding.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/CopyFileWorker.Behavior.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/CopyFileWorker.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/Encoding.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/EncodingDetector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/EncodingServer.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/EncodingWithBOM.Detector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/EncodingWithBOM.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/FavoritesVFS.Favorite.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/FavoritesVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/FileRootsVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/FileVFS.LocalFile.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/FileVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/GlobVFSFileFilter.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/LocalFileSaveTask.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/RegexEncodingDetector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/UrlVFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/VFS.DirectoryEntryCompare.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/VFS.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/VFSFile.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/VFSFileFilter.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/VFSManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/class-use/XMLEncodingDetector.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/io/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/jEdit.JEditPropertyManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/jEdit.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/DirectoryProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/DynamicMenuProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/EnhancedCheckBoxMenuItem.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/EnhancedMenu.EditBusStub.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/EnhancedMenu.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/EnhancedMenuItem.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/FavoritesProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/MacrosProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/MarkersProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/MenuItemTextComparator.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/PluginsProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/RecentDirectoriesProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/RecentFilesProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/ReloadWithEncodingProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/DirectoryProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/DynamicMenuProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/EnhancedCheckBoxMenuItem.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/EnhancedMenu.EditBusStub.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/EnhancedMenu.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/EnhancedMenuItem.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/FavoritesProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/MacrosProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/MarkersProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/MenuItemTextComparator.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/PluginsProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/RecentDirectoriesProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/RecentFilesProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/class-use/ReloadWithEncodingProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/menu/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/BufferChanging.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/BufferUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/DockableWindowUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/DynamicMenuChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/EditPaneUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/EditorExitRequested.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/EditorExiting.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/EditorStarted.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/PluginUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/PositionChanging.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/PropertiesChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/PropertiesChanging.State.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/PropertiesChanging.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/RegisterChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/SearchSettingsChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/VFSPathSelected.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/VFSUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/ViewUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/BufferChanging.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/BufferUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/DockableWindowUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/DynamicMenuChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/EditPaneUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/EditorExitRequested.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/EditorExiting.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/EditorStarted.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/PluginUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/PositionChanging.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/PropertiesChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/PropertiesChanging.State.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/PropertiesChanging.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/RegisterChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/SearchSettingsChanged.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/VFSPathSelected.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/VFSUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/class-use/ViewUpdate.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/msg/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/AbbrevsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/AppearanceOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/BrowserColorsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/BrowserContextOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/BrowserOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/BufferOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/ContextOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/DockingOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/EditingOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/EncodingsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/FirewallOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/GeneralOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/GlobalOptions.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/GutterOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/IconTheme.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/LargeFilesOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/MouseOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/PluginManagerOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/PluginOptions.NoPluginsPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/PluginOptions.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/PrintOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/SaveBackupOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/ShortcutsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/StatusBarOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/SyntaxHiliteOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/TextAreaOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/ToolBarOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/ViewOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/AbbrevsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/AppearanceOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/BrowserColorsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/BrowserContextOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/BrowserOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/BufferOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/ContextOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/DockingOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/EditingOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/EncodingsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/FirewallOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/GeneralOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/GlobalOptions.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/GutterOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/IconTheme.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/LargeFilesOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/MouseOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/PluginManagerOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/PluginOptions.NoPluginsPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/PluginOptions.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/PrintOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/SaveBackupOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/ShortcutsOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/StatusBarOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/SyntaxHiliteOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/TextAreaOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/ToolBarOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/class-use/ViewOptionPane.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/options/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/ManagePanel.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/MirrorList.Mirror.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/MirrorList.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/PluginManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/class-use/ManagePanel.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/class-use/MirrorList.Mirror.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/class-use/MirrorList.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/class-use/PluginManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/pluginmgr/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/BufferPrinter1_3.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/BufferPrinter1_4.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/class-use/BufferPrinter1_3.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/class-use/BufferPrinter1_4.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/print/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/Handler.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/PluginResURLConnection.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/class-use/Handler.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/class-use/PluginResURLConnection.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/proto/jeditresource/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/AllBufferSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/BoyerMooreSearchMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/BufferListSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/CurrentBufferSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/DirectoryListSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchFileNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchFolderNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchOperationNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchResult.GotoDelayed.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchResult.Occur.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchResult.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchResults.ActionHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchResults.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/HyperSearchTreeNodeCallback.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/PatternSearchMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/SearchAndReplace.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/SearchBar.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/SearchDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/SearchFileSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/SearchMatcher.Match.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/SearchMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/AllBufferSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/BoyerMooreSearchMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/BufferListSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/CurrentBufferSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/DirectoryListSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchFileNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchFolderNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchOperationNode.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchResult.GotoDelayed.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchResult.Occur.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchResult.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchResults.ActionHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchResults.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/HyperSearchTreeNodeCallback.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/PatternSearchMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/SearchAndReplace.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/SearchBar.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/SearchDialog.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/SearchFileSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/SearchMatcher.Match.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/class-use/SearchMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/search/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/Chunk.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/DefaultTokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/DisplayTokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/DummyTokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/KeywordMap.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/ModeProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/ParserRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/ParserRuleSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/SyntaxStyle.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/SyntaxUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/Token.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/TokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/TokenMarker.LineContext.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/TokenMarker.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/XModeHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/Chunk.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/DefaultTokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/DisplayTokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/DummyTokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/KeywordMap.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/ModeProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/ParserRule.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/ParserRuleSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/SyntaxStyle.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/SyntaxUtilities.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/Token.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/TokenHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/TokenMarker.LineContext.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/TokenMarker.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/class-use/XModeHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/syntax/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/AntiAlias.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/CircleFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/ColumnBlock.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/ColumnBlockLine.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/DisplayManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/ElasticTabStopBufferListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/ElasticTabstopsTabExpander.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/FoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/Gutter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/GutterPopupHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/JEditEmbeddedTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/JEditTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/MouseActions.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/MouseActionsProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/MouseHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/Node.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/ScrollLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/ScrollListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/Selection.Range.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/Selection.Rect.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/Selection.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/ShapedFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/SquareFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/StandaloneTextArea.StandaloneActionSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/StandaloneTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/StatusListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/StructureMatcher.BracketMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/StructureMatcher.Highlight.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/StructureMatcher.Match.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/StructureMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TextAreaBorder.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TextAreaException.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TextAreaExtension.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TextAreaMouseHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TextAreaPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TextAreaTransferHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/TriangleFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/AntiAlias.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/CircleFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/ColumnBlock.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/ColumnBlockLine.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/DisplayManager.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/ElasticTabStopBufferListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/ElasticTabstopsTabExpander.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/FoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/Gutter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/GutterPopupHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/JEditEmbeddedTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/JEditTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/MouseActions.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/MouseActionsProvider.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/MouseHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/Node.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/ScrollLayout.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/ScrollListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/Selection.Range.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/Selection.Rect.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/Selection.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/ShapedFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/SquareFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/StandaloneTextArea.StandaloneActionSet.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/StandaloneTextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/StatusListener.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/StructureMatcher.BracketMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/StructureMatcher.Highlight.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/StructureMatcher.Match.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/StructureMatcher.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TextArea.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TextAreaBorder.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TextAreaException.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TextAreaExtension.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TextAreaMouseHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TextAreaPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TextAreaTransferHandler.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/class-use/TriangleFoldPainter.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/textarea/package-use.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/JEditVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/JEditVisitorAdapter.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/SaveCaretInfoVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/class-use/JEditVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/class-use/JEditVisitorAdapter.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/class-use/SaveCaretInfoVisitor.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/package-frame.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/package-summary.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/package-tree.html
+share/jedit/doc/api/org/gjt/sp/jedit/visitors/package-use.html
+share/jedit/doc/api/org/gjt/sp/util/AwtRunnableQueue.html
+share/jedit/doc/api/org/gjt/sp/util/EnhancedTreeCellRenderer.html
+share/jedit/doc/api/org/gjt/sp/util/HtmlUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/IOUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/IntegerArray.html
+share/jedit/doc/api/org/gjt/sp/util/Log.html
+share/jedit/doc/api/org/gjt/sp/util/ProgressObserver.html
+share/jedit/doc/api/org/gjt/sp/util/PropertiesBean.html
+share/jedit/doc/api/org/gjt/sp/util/ReverseCharSequence.html
+share/jedit/doc/api/org/gjt/sp/util/SegmentBuffer.html
+share/jedit/doc/api/org/gjt/sp/util/SegmentCharSequence.html
+share/jedit/doc/api/org/gjt/sp/util/StandardUtilities.StringCompare.html
+share/jedit/doc/api/org/gjt/sp/util/StandardUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/StringList.html
+share/jedit/doc/api/org/gjt/sp/util/StringModel.html
+share/jedit/doc/api/org/gjt/sp/util/SyntaxUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/Task.html
+share/jedit/doc/api/org/gjt/sp/util/TaskAdapter.html
+share/jedit/doc/api/org/gjt/sp/util/TaskListener.html
+share/jedit/doc/api/org/gjt/sp/util/TaskManager.TaskVisitor.html
+share/jedit/doc/api/org/gjt/sp/util/TaskManager.html
+share/jedit/doc/api/org/gjt/sp/util/ThreadAbortMonitor.html
+share/jedit/doc/api/org/gjt/sp/util/ThreadUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/XMLUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/AwtRunnableQueue.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/EnhancedTreeCellRenderer.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/HtmlUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/IOUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/IntegerArray.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/Log.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/ProgressObserver.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/PropertiesBean.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/ReverseCharSequence.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/SegmentBuffer.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/SegmentCharSequence.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/StandardUtilities.StringCompare.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/StandardUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/StringList.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/StringModel.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/SyntaxUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/Task.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/TaskAdapter.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/TaskListener.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/TaskManager.TaskVisitor.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/TaskManager.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/ThreadAbortMonitor.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/ThreadUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/class-use/XMLUtilities.html
+share/jedit/doc/api/org/gjt/sp/util/package-frame.html
+share/jedit/doc/api/org/gjt/sp/util/package-summary.html
+share/jedit/doc/api/org/gjt/sp/util/package-tree.html
+share/jedit/doc/api/org/gjt/sp/util/package-use.html
+share/jedit/doc/api/org/jedit/core/FileOpenerService.html
+share/jedit/doc/api/org/jedit/core/MigrationService.html
+share/jedit/doc/api/org/jedit/core/class-use/FileOpenerService.html
+share/jedit/doc/api/org/jedit/core/class-use/MigrationService.html
+share/jedit/doc/api/org/jedit/core/package-frame.html
+share/jedit/doc/api/org/jedit/core/package-summary.html
+share/jedit/doc/api/org/jedit/core/package-tree.html
+share/jedit/doc/api/org/jedit/core/package-use.html
+share/jedit/doc/api/org/jedit/io/Native2ASCIIEncoding.html
+share/jedit/doc/api/org/jedit/io/class-use/Native2ASCIIEncoding.html
+share/jedit/doc/api/org/jedit/io/package-frame.html
+share/jedit/doc/api/org/jedit/io/package-summary.html
+share/jedit/doc/api/org/jedit/io/package-tree.html
+share/jedit/doc/api/org/jedit/io/package-use.html
+share/jedit/doc/api/org/jedit/keymap/EmacsUtil.html
+share/jedit/doc/api/org/jedit/keymap/Keymap.html
+share/jedit/doc/api/org/jedit/keymap/KeymapFileFilter.html
+share/jedit/doc/api/org/jedit/keymap/KeymapManager.State.html
+share/jedit/doc/api/org/jedit/keymap/KeymapManager.html
+share/jedit/doc/api/org/jedit/keymap/KeymapManagerImpl.html
+share/jedit/doc/api/org/jedit/keymap/class-use/EmacsUtil.html
+share/jedit/doc/api/org/jedit/keymap/class-use/Keymap.html
+share/jedit/doc/api/org/jedit/keymap/class-use/KeymapFileFilter.html
+share/jedit/doc/api/org/jedit/keymap/class-use/KeymapManager.State.html
+share/jedit/doc/api/org/jedit/keymap/class-use/KeymapManager.html
+share/jedit/doc/api/org/jedit/keymap/class-use/KeymapManagerImpl.html
+share/jedit/doc/api/org/jedit/keymap/package-frame.html
+share/jedit/doc/api/org/jedit/keymap/package-summary.html
+share/jedit/doc/api/org/jedit/keymap/package-tree.html
+share/jedit/doc/api/org/jedit/keymap/package-use.html
+share/jedit/doc/api/org/jedit/migration/CheckFileStatus.html
+share/jedit/doc/api/org/jedit/migration/KeymapMigration.html
+share/jedit/doc/api/org/jedit/migration/OneTimeMigrationService.html
+share/jedit/doc/api/org/jedit/migration/class-use/CheckFileStatus.html
+share/jedit/doc/api/org/jedit/migration/class-use/KeymapMigration.html
+share/jedit/doc/api/org/jedit/migration/class-use/OneTimeMigrationService.html
+share/jedit/doc/api/org/jedit/migration/package-frame.html
+share/jedit/doc/api/org/jedit/migration/package-summary.html
+share/jedit/doc/api/org/jedit/migration/package-tree.html
+share/jedit/doc/api/org/jedit/migration/package-use.html
+share/jedit/doc/api/org/jedit/options/CombinedOptions.html
+share/jedit/doc/api/org/jedit/options/GlobalOptionGroup.html
+share/jedit/doc/api/org/jedit/options/OptionGroupPane.OptionTreeModel.html
+share/jedit/doc/api/org/jedit/options/OptionGroupPane.html
+share/jedit/doc/api/org/jedit/options/PluginOptionGroup.NoPluginsPane.html
+share/jedit/doc/api/org/jedit/options/PluginOptionGroup.OptionTreeModel.html
+share/jedit/doc/api/org/jedit/options/PluginOptionGroup.html
+share/jedit/doc/api/org/jedit/options/TabbedOptionDialog.html
+share/jedit/doc/api/org/jedit/options/class-use/CombinedOptions.html
+share/jedit/doc/api/org/jedit/options/class-use/GlobalOptionGroup.html
+share/jedit/doc/api/org/jedit/options/class-use/OptionGroupPane.OptionTreeModel.html
+share/jedit/doc/api/org/jedit/options/class-use/OptionGroupPane.html
+share/jedit/doc/api/org/jedit/options/class-use/PluginOptionGroup.NoPluginsPane.html
+share/jedit/doc/api/org/jedit/options/class-use/PluginOptionGroup.OptionTreeModel.html
+share/jedit/doc/api/org/jedit/options/class-use/PluginOptionGroup.html
+share/jedit/doc/api/org/jedit/options/class-use/TabbedOptionDialog.html
+share/jedit/doc/api/org/jedit/options/package-frame.html
+share/jedit/doc/api/org/jedit/options/package-summary.html
+share/jedit/doc/api/org/jedit/options/package-tree.html
+share/jedit/doc/api/org/jedit/options/package-use.html
+share/jedit/doc/api/overview-frame.html
+share/jedit/doc/api/overview-summary.html
+share/jedit/doc/api/overview-tree.html
+share/jedit/doc/api/package-list
+share/jedit/doc/api/script.js
+share/jedit/doc/api/serialized-form.html
+share/jedit/doc/api/stylesheet.css
+share/jedit/doc/api/toc.xml
+share/jedit/doc/jedit.png
+share/jedit/doc/release-procedure.txt
+share/jedit/doc/releasing-jedit.txt
+share/jedit/doc/tips/tip0.html
+share/jedit/doc/tips/tip1.html
+share/jedit/doc/tips/tip10.html
+share/jedit/doc/tips/tip11.html
+share/jedit/doc/tips/tip12.html
+share/jedit/doc/tips/tip13.html
+share/jedit/doc/tips/tip14.html
+share/jedit/doc/tips/tip15.html
+share/jedit/doc/tips/tip16.html
+share/jedit/doc/tips/tip17.html
+share/jedit/doc/tips/tip18.html
+share/jedit/doc/tips/tip19.html
+share/jedit/doc/tips/tip2.html
+share/jedit/doc/tips/tip20.html
+share/jedit/doc/tips/tip21.html
+share/jedit/doc/tips/tip22.html
+share/jedit/doc/tips/tip23.html
+share/jedit/doc/tips/tip24.html
+share/jedit/doc/tips/tip25.html
+share/jedit/doc/tips/tip26.html
+share/jedit/doc/tips/tip27.html
+share/jedit/doc/tips/tip28.html
+share/jedit/doc/tips/tip29.html
+share/jedit/doc/tips/tip3.html
+share/jedit/doc/tips/tip30.html
+share/jedit/doc/tips/tip31.html
+share/jedit/doc/tips/tip32.html
+share/jedit/doc/tips/tip33.html
+share/jedit/doc/tips/tip34.html
+share/jedit/doc/tips/tip35.html
+share/jedit/doc/tips/tip36.html
+share/jedit/doc/tips/tip37.html
+share/jedit/doc/tips/tip38.html
+share/jedit/doc/tips/tip39.html
+share/jedit/doc/tips/tip4.html
+share/jedit/doc/tips/tip40.html
+share/jedit/doc/tips/tip41.html
+share/jedit/doc/tips/tip42.html
+share/jedit/doc/tips/tip43.html
+share/jedit/doc/tips/tip44.html
+share/jedit/doc/tips/tip45.html
+share/jedit/doc/tips/tip46.html
+share/jedit/doc/tips/tip47.html
+share/jedit/doc/tips/tip48.html
+share/jedit/doc/tips/tip49.html
+share/jedit/doc/tips/tip5.html
+share/jedit/doc/tips/tip50.html
+share/jedit/doc/tips/tip51.html
+share/jedit/doc/tips/tip52.html
+share/jedit/doc/tips/tip53.html
+share/jedit/doc/tips/tip54.html
+share/jedit/doc/tips/tip55.html
+share/jedit/doc/tips/tip56.html
+share/jedit/doc/tips/tip57.html
+share/jedit/doc/tips/tip58.html
+share/jedit/doc/tips/tip59.html
+share/jedit/doc/tips/tip6.html
+share/jedit/doc/tips/tip60.html
+share/jedit/doc/tips/tip61.html
+share/jedit/doc/tips/tip62.html
+share/jedit/doc/tips/tip63.html
+share/jedit/doc/tips/tip64.html
+share/jedit/doc/tips/tip65.html
+share/jedit/doc/tips/tip66.html
+share/jedit/doc/tips/tip67.html
+share/jedit/doc/tips/tip68.html
+share/jedit/doc/tips/tip69.html
+share/jedit/doc/tips/tip7.html
+share/jedit/doc/tips/tip70.html
+share/jedit/doc/tips/tip71.html
+share/jedit/doc/tips/tip72.html
+share/jedit/doc/tips/tip73.html
+share/jedit/doc/tips/tip74.html
+share/jedit/doc/tips/tip75.html
+share/jedit/doc/tips/tip76.html
+share/jedit/doc/tips/tip77.html
+share/jedit/doc/tips/tip78.html
+share/jedit/doc/tips/tip79.html
+share/jedit/doc/tips/tip8.html
+share/jedit/doc/tips/tip80.html
+share/jedit/doc/tips/tip81.html
+share/jedit/doc/tips/tip82.html
+share/jedit/doc/tips/tip83.html
+share/jedit/doc/tips/tip84.html
+share/jedit/doc/tips/tip85.html
+share/jedit/doc/tips/tip86.html
+share/jedit/doc/tips/tip87.html
+share/jedit/doc/tips/tip88.html
+share/jedit/doc/tips/tip89.html
+share/jedit/doc/tips/tip9.html
+share/jedit/doc/tips/tip90.html
+share/jedit/doc/tips/tip91.html
+share/jedit/doc/tips/tip92.html
+share/jedit/doc/tips/tip93.html
+share/jedit/doc/tips/tip94.html
+share/jedit/doc/tips/tip95.html
+share/jedit/doc/tips/tip96.html
+share/jedit/doc/tips/tip97.html
+share/jedit/doc/tips/tip98.html
+share/jedit/doc/users-guide/abbrevs.html
+share/jedit/doc/users-guide/action-bar.html
+share/jedit/doc/users-guide/activity-log.html
+share/jedit/doc/users-guide/add-prefix-and-suffix.html
+share/jedit/doc/users-guide/basics.html
+share/jedit/doc/users-guide/beanshell-intro.html
+share/jedit/doc/users-guide/bracket-matching.html
+share/jedit/doc/users-guide/bsh-commands-file.html
+share/jedit/doc/users-guide/bsh-commands-object.html
+share/jedit/doc/users-guide/bsh-commands-other.html
+share/jedit/doc/users-guide/bsh-commands-output.html
+share/jedit/doc/users-guide/bsh-commands-resource.html
+share/jedit/doc/users-guide/bsh-commands-script.html
+share/jedit/doc/users-guide/bsh-commands-serial.html
+share/jedit/doc/users-guide/bsh-commands.html
+share/jedit/doc/users-guide/buffer-local.html
+share/jedit/doc/users-guide/buffer-opts.html
+share/jedit/doc/users-guide/buffers.html
+share/jedit/doc/users-guide/buffersets.html
+share/jedit/doc/users-guide/caret.html
+share/jedit/doc/users-guide/cli-usage.html
+share/jedit/doc/users-guide/closing-exiting.html
+share/jedit/doc/users-guide/commenting.html
+share/jedit/doc/users-guide/conventions.html
+share/jedit/doc/users-guide/creating.html
+share/jedit/doc/users-guide/currentmodeformat.html
+share/jedit/doc/users-guide/customizing.html
+share/jedit/doc/users-guide/dialog-macro-intro.html
+share/jedit/doc/users-guide/dialog-macro.html
+share/jedit/doc/users-guide/docking.html
+share/jedit/doc/users-guide/dynamic-typing.html
+share/jedit/doc/users-guide/editing.html
+share/jedit/doc/users-guide/encodings.html
+share/jedit/doc/users-guide/entering-text.html
+share/jedit/doc/users-guide/files.html
+share/jedit/doc/users-guide/first-example.html
+share/jedit/doc/users-guide/folding.html
+share/jedit/doc/users-guide/global-opts.html
+share/jedit/doc/users-guide/globs.html
+share/jedit/doc/users-guide/helpful-methods.html
+share/jedit/doc/users-guide/history.html
+share/jedit/doc/users-guide/indent.html
+share/jedit/doc/users-guide/index.html
+share/jedit/doc/users-guide/installing-modes.html
+share/jedit/doc/users-guide/installing-plugins.html
+share/jedit/doc/users-guide/jvm-options.html
+share/jedit/doc/users-guide/keyboard-focus.html
+share/jedit/doc/users-guide/line-separators.html
+share/jedit/doc/users-guide/lines.html
+share/jedit/doc/users-guide/macro-analysis.html
+share/jedit/doc/users-guide/macro-basics.html
+share/jedit/doc/users-guide/macro-index.html
+share/jedit/doc/users-guide/macro-tips-BeanShell.html
+share/jedit/doc/users-guide/macro-tips-debugging.html
+share/jedit/doc/users-guide/macro-tips-input.html
+share/jedit/doc/users-guide/macro-tips.html
+share/jedit/doc/users-guide/macros-c.html
+share/jedit/doc/users-guide/macros-clipboard.html
+share/jedit/doc/users-guide/macros-editing.html
+share/jedit/doc/users-guide/macros-files.html
+share/jedit/doc/users-guide/macros-interface.html
+share/jedit/doc/users-guide/macros-java.html
+share/jedit/doc/users-guide/macros-misc.html
+share/jedit/doc/users-guide/macros-properties.html
+share/jedit/doc/users-guide/macros-text.html
+share/jedit/doc/users-guide/markers.html
+share/jedit/doc/users-guide/mode-match-type.html
+share/jedit/doc/users-guide/mode-preamble.html
+share/jedit/doc/users-guide/mode-rule-eol-span-regexp.html
+share/jedit/doc/users-guide/mode-rule-eol-span.html
+share/jedit/doc/users-guide/mode-rule-import.html
+share/jedit/doc/users-guide/mode-rule-keywords.html
+share/jedit/doc/users-guide/mode-rule-mark-following.html
+share/jedit/doc/users-guide/mode-rule-mark-prev.html
+share/jedit/doc/users-guide/mode-rule-seq-regexp.html
+share/jedit/doc/users-guide/mode-rule-seq.html
+share/jedit/doc/users-guide/mode-rule-span-regexp.html
+share/jedit/doc/users-guide/mode-rule-span.html
+share/jedit/doc/users-guide/mode-rule-terminate.html
+share/jedit/doc/users-guide/mode-syntax-tokens.html
+share/jedit/doc/users-guide/mode-tag-props.html
+share/jedit/doc/users-guide/mode-tag-rules.html
+share/jedit/doc/users-guide/modes.html
+share/jedit/doc/users-guide/opening.html
+share/jedit/doc/users-guide/organizing-macros.html
+share/jedit/doc/users-guide/overview.html
+share/jedit/doc/users-guide/paragraphs.html
+share/jedit/doc/users-guide/plugin-debugging.html
+share/jedit/doc/users-guide/plugin-implement-actions.html
+share/jedit/doc/users-guide/plugin-implement-building.html
+share/jedit/doc/users-guide/plugin-implement-dockables.html
+share/jedit/doc/users-guide/plugin-implement-docs.html
+share/jedit/doc/users-guide/plugin-implement-editbus.html
+share/jedit/doc/users-guide/plugin-implement-options.html
+share/jedit/doc/users-guide/plugin-implement-properties.html
+share/jedit/doc/users-guide/plugin-implement-quicknotepad.html
+share/jedit/doc/users-guide/plugin-implement-quicknotepadplugin.html
+share/jedit/doc/users-guide/plugin-implement-quicknotepadtoolbar.html
+share/jedit/doc/users-guide/plugin-implement-reloading.html
+share/jedit/doc/users-guide/plugin-implement-services.html
+share/jedit/doc/users-guide/plugin-implement.html
+share/jedit/doc/users-guide/plugin-intro.html
+share/jedit/doc/users-guide/plugin-load.html
+share/jedit/doc/users-guide/plugin-manager.html
+share/jedit/doc/users-guide/plugin-sets.html
+share/jedit/doc/users-guide/plugin-tips-colors.html
+share/jedit/doc/users-guide/plugin-tips-libraries.html
+share/jedit/doc/users-guide/plugin-tips-non-java-libraries.html
+share/jedit/doc/users-guide/plugin-tips-plugin-data.html
+share/jedit/doc/users-guide/plugin-tips.html
+share/jedit/doc/users-guide/predefined-variables.html
+share/jedit/doc/users-guide/printing.html
+share/jedit/doc/users-guide/recording-macros.html
+share/jedit/doc/users-guide/regexps.html
+share/jedit/doc/users-guide/reloading.html
+share/jedit/doc/users-guide/running-macros.html
+share/jedit/doc/users-guide/saving.html
+share/jedit/doc/users-guide/scripts-command-line.html
+share/jedit/doc/users-guide/scrolling.html
+share/jedit/doc/users-guide/search-replace.html
+share/jedit/doc/users-guide/selection.html
+share/jedit/doc/users-guide/settings-directory.html
+share/jedit/doc/users-guide/shortcuts.html
+share/jedit/doc/users-guide/single-macros.html
+share/jedit/doc/users-guide/something-useful.html
+share/jedit/doc/users-guide/source-edit.html
+share/jedit/doc/users-guide/starting.html
+share/jedit/doc/users-guide/startup-scripts.html
+share/jedit/doc/users-guide/status-bar.html
+share/jedit/doc/users-guide/task-monitor.html
+share/jedit/doc/users-guide/text-transfer.html
+share/jedit/doc/users-guide/toc.xml
+share/jedit/doc/users-guide/undo-redo.html
+share/jedit/doc/users-guide/updating-modes.html
+share/jedit/doc/users-guide/using-jedit-part.html
+share/jedit/doc/users-guide/using-macros.html
+share/jedit/doc/users-guide/using-plugins.html
+share/jedit/doc/users-guide/utility-classes.html
+share/jedit/doc/users-guide/vfs-browser.html
+share/jedit/doc/users-guide/views.html
+share/jedit/doc/users-guide/word-wrap.html
+share/jedit/doc/users-guide/words.html
+share/jedit/doc/users-guide/writing-macros-part.html
+share/jedit/doc/users-guide/writing-modes-part.html
+share/jedit/doc/users-guide/writing-modes.html
+share/jedit/doc/users-guide/writing-plugins-part.html
+share/jedit/doc/users-guide/xml-primer.html
+share/jedit/doc/welcome.html
+share/jedit/doc/whatsnew/index.html
+share/jedit/doc/whatsnew/toc.xml
+share/jedit/jars/QuickNotepad.jar
+share/jedit/jedit.jar
+share/jedit/keymaps/Alan_keys.props
+share/jedit/keymaps/Emacs_keys.props
+share/jedit/keymaps/German_Keyboard_keys.props
+share/jedit/keymaps/IntelliJ_IDEA_keys.props
+share/jedit/keymaps/Mac_OS_X_keys.props
+share/jedit/keymaps/jEdit_keys.props
+share/jedit/macros/C/Include_Guard.bsh
+share/jedit/macros/C/Toggle_Header_Source.bsh
+share/jedit/macros/Clipboard/Copy_Lines.bsh
+share/jedit/macros/Clipboard/Copy_Lines_Containing.bsh
+share/jedit/macros/Clipboard/Copy_Visible_Lines.bsh
+share/jedit/macros/Clipboard/Cut_Lines.bsh
+share/jedit/macros/Clipboard/Cut_Lines_Containing.bsh
+share/jedit/macros/Clipboard/Paste_Indent.bsh
+share/jedit/macros/Editing/Duplicate_Lines_Above.bsh
+share/jedit/macros/Editing/Duplicate_Lines_Below.bsh
+share/jedit/macros/Editing/Go_to_Column.bsh
+share/jedit/macros/Editing/Go_to_Offset.bsh
+share/jedit/macros/Editing/Greedy_Backspace.bsh
+share/jedit/macros/Editing/Greedy_Delete.bsh
+share/jedit/macros/Editing/Greedy_Left.bsh
+share/jedit/macros/Editing/Greedy_Right.bsh
+share/jedit/macros/Editing/Keywords_to_Upper_Case.bsh
+share/jedit/macros/Editing/Mode_Switcher.bsh
+share/jedit/macros/Editing/Move_Lines_Down.bsh
+share/jedit/macros/Editing/Move_Lines_Up.bsh
+share/jedit/macros/Editing/Open_Line_Above.bsh
+share/jedit/macros/Editing/Open_Line_Below.bsh
+share/jedit/macros/Editing/Toggle_Fold.bsh
+share/jedit/macros/Emacs/EmacsUtil.bsh
+share/jedit/macros/Emacs/Emacs_Align_Decls.bsh
+share/jedit/macros/Emacs/Emacs_Backward_Sentence.bsh
+share/jedit/macros/Emacs/Emacs_Capitalize_Word.bsh
+share/jedit/macros/Emacs/Emacs_Center_Line.bsh
+share/jedit/macros/Emacs/Emacs_Ctrl-K.bsh
+share/jedit/macros/Emacs/Emacs_Downcase_Word.bsh
+share/jedit/macros/Emacs/Emacs_Exchange_Point_and_Mark.bsh
+share/jedit/macros/Emacs/Emacs_Fixup_Whitespace.bsh
+share/jedit/macros/Emacs/Emacs_Forward_Sentence.bsh
+share/jedit/macros/Emacs/Emacs_Insert_File.bsh
+share/jedit/macros/Emacs/Emacs_Kill_Line.bsh
+share/jedit/macros/Emacs/Emacs_Kill_Region.bsh
+share/jedit/macros/Emacs/Emacs_Kill_Ring_Save.bsh
+share/jedit/macros/Emacs/Emacs_Kill_Sentence.bsh
+share/jedit/macros/Emacs/Emacs_Next_Line.bsh
+share/jedit/macros/Emacs/Emacs_Open_Line.bsh
+share/jedit/macros/Emacs/Emacs_Previous_Line.bsh
+share/jedit/macros/Emacs/Emacs_Set_Mark.bsh
+share/jedit/macros/Emacs/Emacs_Set_Wrap.bsh
+share/jedit/macros/Emacs/Emacs_Transpose_Chars.bsh
+share/jedit/macros/Emacs/Emacs_Transpose_Lines.bsh
+share/jedit/macros/Emacs/Emacs_Upcase_Word.bsh
+share/jedit/macros/Emacs/LICENSE.md
+share/jedit/macros/Emacs/README.md
+share/jedit/macros/Files/Browse_Buffer_Directory.bsh
+share/jedit/macros/Files/Browse_Directory.bsh
+share/jedit/macros/Files/Buffer_Switcher.bsh
+share/jedit/macros/Files/Copy_Name_to_Clipboard.bsh
+share/jedit/macros/Files/Copy_Path_to_Clipboard.bsh
+share/jedit/macros/Files/Delete_Current.bsh
+share/jedit/macros/Files/Duplicate_Buffer.bsh
+share/jedit/macros/Files/Glob_Close.bsh
+share/jedit/macros/Files/Insert_Selection.bsh
+share/jedit/macros/Files/Next_Dirty_Buffer.bsh
+share/jedit/macros/Files/Open_Path.bsh
+share/jedit/macros/Files/Open_Selection.bsh
+share/jedit/macros/Files/Open_Selection_In_Desktop.bsh
+share/jedit/macros/Files/Send_Buffer_To_Next_Split.bsh
+share/jedit/macros/Files/Toggle_ReadOnly.bsh
+share/jedit/macros/Interface/Decrease_Font_Size.bsh
+share/jedit/macros/Interface/Increase_Font_Size.bsh
+share/jedit/macros/Interface/Open_Context_Menu.bsh
+share/jedit/macros/Interface/Reset_TextArea.bsh
+share/jedit/macros/Interface/Splitpane_Grow.bsh
+share/jedit/macros/Interface/Toggle_Bottom_Docking_Area.bsh
+share/jedit/macros/Interface/Toggle_Left_Docking_Area.bsh
+share/jedit/macros/Interface/Toggle_Right_Docking_Area.bsh
+share/jedit/macros/Interface/Toggle_Top_Docking_Area.bsh
+share/jedit/macros/Java/Create_Constructor.bsh
+share/jedit/macros/Java/Get_Class_Name.bsh
+share/jedit/macros/Java/Get_Package_Name.bsh
+share/jedit/macros/Java/Java_File_Save.bsh
+share/jedit/macros/Java/Make_Get_and_Set_Methods.bsh
+share/jedit/macros/Java/Preview_JavaDoc_Of_Current_Buffer.bsh
+share/jedit/macros/Misc/Buffer_to_HyperSearch_Results.bsh
+share/jedit/macros/Misc/Debug_BufferSets.bsh
+share/jedit/macros/Misc/Display_Abbreviations.bsh
+share/jedit/macros/Misc/Display_Actions.bsh
+share/jedit/macros/Misc/Display_Character_Code.bsh
+share/jedit/macros/Misc/Display_Shortcuts.bsh
+share/jedit/macros/Misc/Evaluate_Buffer_in_BeanShell.bsh
+share/jedit/macros/Misc/Generate Encodings List.bsh
+share/jedit/macros/Misc/Generate Modes List.bsh
+share/jedit/macros/Misc/Hex_Convert.bsh
+share/jedit/macros/Misc/HyperSearch_Results_to_Buffer.bsh
+share/jedit/macros/Misc/Insert Plugins List.bsh
+share/jedit/macros/Misc/Make_Bug_Report.bsh
+share/jedit/macros/Misc/Run_Script.bsh
+share/jedit/macros/Misc/Show_Threads.bsh
+share/jedit/macros/Properties/Create_Plugin_Announcement.bsh
+share/jedit/macros/Properties/Insert_Buffer_Properties.bsh
+share/jedit/macros/Properties/Look_and_Feel_Properties.bsh
+share/jedit/macros/Properties/System_Properties.bsh
+share/jedit/macros/Properties/jEdit_Properties.bsh
+share/jedit/macros/Text/Add_Prefix_and_Suffix.bsh
+share/jedit/macros/Text/Color_Picker.bsh
+share/jedit/macros/Text/Compose_Tag.bsh
+share/jedit/macros/Text/Duplicate_Line.bsh
+share/jedit/macros/Text/Insert_Date.bsh
+share/jedit/macros/Text/Insert_Tag.bsh
+share/jedit/macros/Text/Line_Filter.bsh
+share/jedit/macros/Text/Next_Char.bsh
+share/jedit/macros/Text/Reverse_Lines.bsh
+share/jedit/macros/Text/Reverse_Selection.bsh
+share/jedit/macros/Text/Single_Space_Buffer.bsh
+share/jedit/modes/actionscript.xml
+share/jedit/modes/ada.xml
+share/jedit/modes/ada95.xml
+share/jedit/modes/ans-forth94.xml
+share/jedit/modes/ant.xml
+share/jedit/modes/antlr.xml
+share/jedit/modes/antlr4.xml
+share/jedit/modes/apacheconf.xml
+share/jedit/modes/apdl.xml
+share/jedit/modes/applescript.xml
+share/jedit/modes/asp.xml
+share/jedit/modes/aspect-j.xml
+share/jedit/modes/assembly-agc.xml
+share/jedit/modes/assembly-ags.xml
+share/jedit/modes/assembly-m68k.xml
+share/jedit/modes/assembly-macro32.xml
+share/jedit/modes/assembly-mcs51.xml
+share/jedit/modes/assembly-parrot.xml
+share/jedit/modes/assembly-r2000.xml
+share/jedit/modes/assembly-x86.xml
+share/jedit/modes/avro.xml
+share/jedit/modes/awk.xml
+share/jedit/modes/b.xml
+share/jedit/modes/batch.xml
+share/jedit/modes/bbj.xml
+share/jedit/modes/bcel.xml
+share/jedit/modes/bibtex.xml
+share/jedit/modes/binsource-agc.xml
+share/jedit/modes/c.xml
+share/jedit/modes/catalog
+share/jedit/modes/cfscript.xml
+share/jedit/modes/chill.xml
+share/jedit/modes/cil.xml
+share/jedit/modes/clips.xml
+share/jedit/modes/clojure.xml
+share/jedit/modes/cmake.xml
+share/jedit/modes/cobol.xml
+share/jedit/modes/coffeescript.xml
+share/jedit/modes/coldfusion.xml
+share/jedit/modes/cplexlp.xml
+share/jedit/modes/cplusplus.xml
+share/jedit/modes/csharp.xml
+share/jedit/modes/css.xml
+share/jedit/modes/csv.xml
+share/jedit/modes/cvs-commit.xml
+share/jedit/modes/d.xml
+share/jedit/modes/dart.xml
+share/jedit/modes/django.xml
+share/jedit/modes/dot.xml
+share/jedit/modes/doxygen.xml
+share/jedit/modes/dsssl.xml
+share/jedit/modes/eiffel.xml
+share/jedit/modes/embperl.xml
+share/jedit/modes/erlang.xml
+share/jedit/modes/factor.xml
+share/jedit/modes/fhtml.xml
+share/jedit/modes/forth.xml
+share/jedit/modes/fortran.xml
+share/jedit/modes/fortran90.xml
+share/jedit/modes/foxpro.xml
+share/jedit/modes/freemarker.xml
+share/jedit/modes/gcbasic.xml
+share/jedit/modes/gettext.xml
+share/jedit/modes/gnuplot.xml
+share/jedit/modes/go.xml
+share/jedit/modes/gradle.xml
+share/jedit/modes/groovy.xml
+share/jedit/modes/haskell.xml
+share/jedit/modes/haxe.xml
+share/jedit/modes/hex.xml
+share/jedit/modes/hlsl.xml
+share/jedit/modes/htaccess.xml
+share/jedit/modes/html.xml
+share/jedit/modes/hxml.xml
+share/jedit/modes/i4gl.xml
+share/jedit/modes/ical.xml
+share/jedit/modes/icon.xml
+share/jedit/modes/idl.xml
+share/jedit/modes/inform.xml
+share/jedit/modes/ini.xml
+share/jedit/modes/inno-setup.xml
+share/jedit/modes/interlis.xml
+share/jedit/modes/io.xml
+share/jedit/modes/jamon.xml
+share/jedit/modes/java.xml
+share/jedit/modes/javacc.xml
+share/jedit/modes/javafx.xml
+share/jedit/modes/javascript.xml
+share/jedit/modes/jcl.xml
+share/jedit/modes/jedit-actions.xml
+share/jedit/modes/jflex.xml
+share/jedit/modes/jhtml.xml
+share/jedit/modes/jmk.xml
+share/jedit/modes/json.xml
+share/jedit/modes/jsp.xml
+share/jedit/modes/kotlin.xml
+share/jedit/modes/latex.xml
+share/jedit/modes/lex.xml
+share/jedit/modes/lilypond.xml
+share/jedit/modes/lisp.xml
+share/jedit/modes/literate-haskell.xml
+share/jedit/modes/logs.xml
+share/jedit/modes/logtalk.xml
+share/jedit/modes/lotos.xml
+share/jedit/modes/lua.xml
+share/jedit/modes/macroscheduler.xml
+share/jedit/modes/mail.xml
+share/jedit/modes/makefile.xml
+share/jedit/modes/maple.xml
+share/jedit/modes/markdown.xml
+share/jedit/modes/maven.xml
+share/jedit/modes/ml.xml
+share/jedit/modes/modula3.xml
+share/jedit/modes/moin.xml
+share/jedit/modes/mpost.xml
+share/jedit/modes/mqsc.xml
+share/jedit/modes/mustache.xml
+share/jedit/modes/mxml.xml
+share/jedit/modes/myghty.xml
+share/jedit/modes/mysql.xml
+share/jedit/modes/n3.xml
+share/jedit/modes/netrexx.xml
+share/jedit/modes/nqc.xml
+share/jedit/modes/nsis2.xml
+share/jedit/modes/objective-c.xml
+share/jedit/modes/objectrexx.xml
+share/jedit/modes/occam.xml
+share/jedit/modes/omnimark.xml
+share/jedit/modes/osql.xml
+share/jedit/modes/outline.xml
+share/jedit/modes/pascal.xml
+share/jedit/modes/patch.xml
+share/jedit/modes/perl.xml
+share/jedit/modes/pg-sql.xml
+share/jedit/modes/php.xml
+share/jedit/modes/pike.xml
+share/jedit/modes/pl-sql.xml
+share/jedit/modes/pl1.xml
+share/jedit/modes/plaintex.xml
+share/jedit/modes/pop11.xml
+share/jedit/modes/postscript.xml
+share/jedit/modes/povray.xml
+share/jedit/modes/powercenter_parameter_file.xml
+share/jedit/modes/powerdynamo.xml
+share/jedit/modes/powershell.xml
+share/jedit/modes/progress.xml
+share/jedit/modes/prolog.xml
+share/jedit/modes/props.xml
+share/jedit/modes/psp.xml
+share/jedit/modes/ptl.xml
+share/jedit/modes/pure.xml
+share/jedit/modes/pvwave.xml
+share/jedit/modes/pyrex.xml
+share/jedit/modes/python.xml
+share/jedit/modes/quake.xml
+share/jedit/modes/rcp.xml
+share/jedit/modes/rd.xml
+share/jedit/modes/rebol.xml
+share/jedit/modes/redcode.xml
+share/jedit/modes/regex.xml
+share/jedit/modes/relax-ng-compact.xml
+share/jedit/modes/rest.xml
+share/jedit/modes/rfc.xml
+share/jedit/modes/rhtml.xml
+share/jedit/modes/rib.xml
+share/jedit/modes/roff.xml
+share/jedit/modes/rpmspec.xml
+share/jedit/modes/rtf.xml
+share/jedit/modes/ruby.xml
+share/jedit/modes/rust.xml
+share/jedit/modes/rview.xml
+share/jedit/modes/sas.xml
+share/jedit/modes/scala.xml
+share/jedit/modes/scheme.xml
+share/jedit/modes/sdl_pr.xml
+share/jedit/modes/sgml.xml
+share/jedit/modes/shellscript.xml
+share/jedit/modes/shtml.xml
+share/jedit/modes/sip.xml
+share/jedit/modes/slate.xml
+share/jedit/modes/slax.xml
+share/jedit/modes/smalltalk.xml
+share/jedit/modes/smarty.xml
+share/jedit/modes/smi-mib.xml
+share/jedit/modes/splus.xml
+share/jedit/modes/sql-loader.xml
+share/jedit/modes/sqr.xml
+share/jedit/modes/squidconf.xml
+share/jedit/modes/ssharp.xml
+share/jedit/modes/stata.xml
+share/jedit/modes/svn-commit.xml
+share/jedit/modes/swig.xml
+share/jedit/modes/tcl.xml
+share/jedit/modes/tex.xml
+share/jedit/modes/texinfo.xml
+share/jedit/modes/text.xml
+share/jedit/modes/tld.xml
+share/jedit/modes/tpl.xml
+share/jedit/modes/tsp.xml
+share/jedit/modes/tsql.xml
+share/jedit/modes/tthtml.xml
+share/jedit/modes/turbobasic.xml
+share/jedit/modes/twiki.xml
+share/jedit/modes/typoscript.xml
+share/jedit/modes/url.xml
+share/jedit/modes/uscript.xml
+share/jedit/modes/vala.xml
+share/jedit/modes/vbscript.xml
+share/jedit/modes/velocity.xml
+share/jedit/modes/velocity_pure.xml
+share/jedit/modes/verilog.xml
+share/jedit/modes/vhdl.xml
+share/jedit/modes/visualbasic.xml
+share/jedit/modes/vrml2.xml
+share/jedit/modes/xml.xml
+share/jedit/modes/xq.xml
+share/jedit/modes/xsl.xml
+share/jedit/modes/yab.xml
+share/jedit/modes/yaml.xml
+share/jedit/modes/zpt.xml
+share/jedit/properties/README.txt
+share/jedit/startup/README.txt
+share/jedit/startup/startup.bsh
diff --git a/jedit/TODO b/jedit/TODO
new file mode 100644
index 0000000000..1bae342d9b
--- /dev/null
+++ b/jedit/TODO
@@ -0,0 +1 @@
+Nothing, I think.  pkglint says it "looks fine."
diff --git a/jedit/distinfo b/jedit/distinfo
new file mode 100644
index 0000000000..1123c8d793
--- /dev/null
+++ b/jedit/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (jedit5.3.0install.jar) = 956992c86d33ab30a6695a029eba25d116ec1631
+RMD160 (jedit5.3.0install.jar) = 04c473d70b8b792d4dbc83b3cbf9918ecac3556b
+SHA512 (jedit5.3.0install.jar) = 7b6b604401bebbea35718f47da6b8c3ed50ffa39409330030f36037910d17c32666b033d27ee2f04a3b3048a37f8dca955bfdce735d8b4e2e18a19e94c7aaa0e
+Size (jedit5.3.0install.jar) = 3329590 bytes
diff --git a/jedit/files/jedit.sh b/jedit/files/jedit.sh
new file mode 100644
index 0000000000..67aa019867
--- /dev/null
+++ b/jedit/files/jedit.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+JAVA_HEAP_SIZE=32
+
+@PKG_JAVA_HOME@/bin/java -mx${JAVA_HEAP_SIZE}m -jar @JEDIT_HOME@/jedit.jar $@


Home | Main Index | Thread Index | Old Index