Remove extra whitespace in readme
Version 0.11.0
Update readme and changelog in preparation for the 0.11.0 release
Jarchive teaches emacs how to open project dependencies that reside inside jar files.
This package is still under active development, but should be relatively stable. Any important or breaking changes will now be noted in the CHANGELOG.
It current works well with eglot on the Emacs master branch. I've also included a patch for legacy versions of eglot that are not yet up to date with Emacs master.
See the CHANGELOG for more information.
This package is available on ELPA. There is also an example of a guix recipe.
After installing this package, in your config call jarchive-mode
:
(jarchive-mode)
or it can be called interactively, via M-x jarchive-mode
.
jarchive-mode
Some Emacs distributions like Doom (and many personal configurations), set the file-name-handler-alist
var to nil on startup, then restore it's value when startup is complete.
If this is the case for you, jarchive-mode
should be called AFTER everything is initialized, using (with-eval-after-load "init" (jarchive-mode))
, where "init"
refers to your "init.el"
file.
This package modifies file-name-handler-alist
, so it relies on it not being reset after jarchive-mode
is invoked.
Jarchive will open jar dependencies provided to Eglot by lsp servers. This should work out of the box with Emacs 29 and recent Eglot versions.
If you are using an older version of Eglot, like the melpa version released on 2022-10-20, then you need to call jarchive-patch-eglot
after Eglot is loaded, like so
(jarchive-patch-eglot)
This is not required on newer versions of eglot. Installs that are up to date with eglot on ELPA devel or eglot bundled with emacs 29 will work without patching. This patch function is included so those on older releases of eglot can also take advantage of this package. It is currently marked obsolete and will be removed in the next version of Jarchive.
With it enabled, things like this will open up page.clj
in a read-only buffer.
(find-file "jar:file:///.m2/repository/hiccup/hiccup/1.0.5/hiccup-1.0.5.jar!/hiccup/page.clj")
When using eglot connected to a JVM language server, invoking xref-find-definitions
should correctly open any dependencies that reside in JAR files.
If you want eglot to manage the opened jar'd file in your project's current lsp session, set
(setq eglot-extend-to-xref t)
This will allow xref to work across your project and the opened file.
If you do not want that, the eglot will probably start a new server to manage the newly opened file. There are legitimate reasons to do this, because including it in the current LSP session will mean it is included when looking up references. Large files, like the clojure core library, could create a lot of noise in xref lookups. Another recommendation if you don't want them managed by eglot is to set
(setq eglot-autoshutdown t)
so that the transient lsp server that is started when opening the file is closed along with it.
I personally only test Jarchive with clojure-lsp.
Users report that Jarchive works well with the Java LSP server java-language-server.
I do know that it does not work with JDTLS
at them moment, which requires all clients to implement custom language server extensions and a complicated non-standard URI scheme to open files in JARs.
Any language server that provides jar: scheme URIs should be picked up by this package. If it doesn't, please let me know and I'd be happy to take a look.
Questions and patches can be submitted to the mailing list.
Bugs can be submitted here: bug tracker. Any bugs found should include steps to reproduce. If possible, and example repository containing a project and instructions (or a nix shell) for installing the language servers would be appreciated.