cider 
- Description
- Clojure Interactive Development Environment that Rocks
- Latest
- cider-1.18.0snapshot0.20250416.111728.tar (.sig), 2025-Apr-16, 1.27 MiB
- Maintainer
- Bozhidar Batsov <bozhidar@batsov.dev>
- Website
- https://www.github.com/clojure-emacs/cider
- Browse ELPA's repository
- CGit or Gitweb
- Badge
To install this package from Emacs, use package-install
or list-packages
.
Full description
Provides a Clojure interactive development environment for Emacs, built on top of nREPL. See https://docs.cider.mx for more details.
Old versions
cider-1.18.0snapshot0.20250414.160557.tar.lz | 2025-Apr-14 | 236 KiB |
cider-1.18.0snapshot0.20250411.51046.tar.lz | 2025-Apr-11 | 236 KiB |
cider-1.18.0snapshot0.20250407.123433.tar.lz | 2025-Apr-07 | 236 KiB |
cider-1.18.0snapshot0.20250331.183211.tar.lz | 2025-Mar-31 | 236 KiB |
cider-1.18.0snapshot0.20250319.102219.tar.lz | 2025-Mar-19 | 236 KiB |
cider-1.17.1.0.20250303.70215.tar.lz | 2025-Mar-03 | 236 KiB |
cider-1.16.1.0.20250105.70719.tar.lz | 2025-Jan-05 | 236 KiB |
cider-1.10.0.0.20231031.193913.tar.lz | 2023-Oct-31 | 229 KiB |
cider-1.9.0.0.20231024.195502.tar.lz | 2023-Oct-24 | 228 KiB |
cider-1.2.0.0.20220104.100235.tar.lz | 2022-Jan-04 | 189 KiB |
News
Changelog
master (unreleased)
New features
- #3802: Inspector analytics.
- #3802: Inspector table view-mode.
- orchard#320: Info: recognize printed Java classes/methods and munged Clojure functions in stacktrace outputs.
Changes
- #3782: (Breaking) Drop official support for Emacs 26.
- #3812: (Breaking) Remove support for Boot.
- #3793: (Breaking) Remove features that relied on printed exception parsing:
cider-stacktrace-analyze-string
andcider-stacktrace-analyze-at-point
functions.- Automatic stacktrace parsing in log viewer.
- Bump the injected
cider-nrepl
to 0.55.1.- compliment#122: Completion: sort candidates by priority.
- Inspector: add dedicated view for Exceptions.
- Stop vendoring Haystack dependency.
- Stop vendoring Puget dependency. You can still use
puget
pretty-printer in CIDER, but you need to depend on Puget explicitly. If Puget is not found on the classpath, CIDER will revert toclojure.pprint/pprint
for pretty-printing.
- #3777: Inspector no longer displays parsed Javadoc for Java classes and members.
- #3790: Stacktrace: show messages and data for all exception causes by default.
- #3807: Stacktrace: make exception data individually inspectable.
- #3789: Refactor and simplify exception handling.
- #3789: Completion: disable client-side sorting (defer to backend-provided candidate order).
- #3797: Completion: enable
cider-completion-style
by default (this enables richer completion suggestions where candidates don't have to strictly match the prefix). - #3803: Enable dynamic indentation for
clojure-ts-mode
. - #3805: Profiler: update to latest profiling middleware.
- #3806: Add client info to
clone
op request.
Bugs fixed
- #3784: Inspector: make point less erratic when navigating between inspector screens.
Bugs fixed
- #3779:
cider-find-keyword
doesn't work withclojure-ts-mode
. - #3791: Missing font lock when
cider-font-lock-dynamically
is enabled forclojure-ts-mode
.
1.17.1 (2025-02-25)
Changes
- Bump the injected
cider-nrepl
to 0.52.1.
Bugs fixed
- #3775: Code completion throws MalformedURLException on Windows.
1.17.0 (2025-02-17)
New features
- Automatic downloading of third-party Java sources for better Java documentation and jump-to-definition functionality. See Obtaining source JARs.
- CIDER History: Add a command to delete history item at point.