Allen Walker <awalker(a)mail.utexas.net> writes:
jar for viewing, then I can subsequently open individual .java files
in the jar (assuming this jar contains .java files).
In XEmacs this doesn't work. Is there an archive-mode package available
somewhere like with emacs?
Archive mode is already there, only it's not associated with .java
files by default. All you need to get it to work is put this in your
.emacs:
(push '("\\.jar$" . archive-mode) auto-mode-alist)
It adds an entry that says "invoke archive-mode on .jar files" to the
variable that decides which modes will be used for which file
extensions.