summaryrefslogtreecommitdiff
path: root/cider-classpath.el
Commit message (Collapse)AuthorAge
* Bump the copyright yearsBozhidar Batsov2019-01-01
|
* Initialize `sesman-system` in all CIDER modesVitalie Spinu2018-07-13
|
* [Fix #2347] Remove direct manipulations of cider-ancillary-buffersBozhidar Batsov2018-06-24
| | | | | CIDER's popups had a way to track those automatically for a while, it's time to leverage this consistently.
* Revert "Remove cider-compat.el"Bozhidar Batsov2018-06-18
| | | | | | | This reverts commit b28fbac964907172fdedc3bea56eab905d5fbdbf. This can't be fully removed due to the difference in the signature of `if-let*` and `when-let*` in Emacs 25 and 26.
* Remove cider-compat.elBozhidar Batsov2018-06-18
| | | | It's no longer needed now that we target Emacs 25.
* Bump the copyright yearsBozhidar Batsov2018-01-01
|
* Replace `if-let` and `when-let` with starred versionsTianxiang Xiong2017-12-11
| | | | | | | | | | Fix #2130. Emacs 26 obsoletes `if-let` and `when-let`, replacing them with `if-let*` and `when-let*`. This raises byte-compilation warnings (treated as errors) when testing against Emacs 26. See: http://git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS?h=emacs-26#n1278
* Use `add-to-list` instead of `push` for ancillary buffersTianxiang Xiong2017-07-19
|
* Remove some redundant code from modes inheriting from special-modeBozhidar Batsov2017-07-09
| | | | | All of those were making their buffers read-only explicitly, but that behaviour is automatically inherited from special-mode.
* Update the copyright years in the source codeBozhidar Batsov2017-01-04
|
* [Fix #1882] Restore compatibility with Emacs 24.4Bozhidar Batsov2016-11-25
| | | | | The functions in `cider-compat.el` were actually added in Emacs 25.1, not Emacs 24.4.
* Drop support for Emacs 24.3Bozhidar Batsov2016-11-19
|
* [Fix #1707] Add customization for line truncating in special buffersBartłomiej Kruczyk2016-10-16
|
* Fix usage of RET in several keymaps (#1852)Andriy Kmit2016-09-26
| | | | | | Replace several occurrences of [return] in keymap definitions with (kbd "RET"). Also remove now redundant binding for `C-M`.
* Update a few copyright headersBozhidar Batsov2016-03-27
|
* Track a few more ancillary buffersBozhidar Batsov2016-03-09
|
* Make sure cider-open-classpath-entry doesn't blow up in the absence of aBozhidar Batsov2016-02-28
| | | | connection or the classpath op
* Fix broken classpath testBozhidar Batsov2016-02-28
|
* Change the name of the classpath browser bufferBozhidar Batsov2016-02-12
|
* Make sure CIDER's connected in cider-classpathBozhidar Batsov2016-02-10
|
* Update the copyright yearsBozhidar Batsov2016-01-01
|
* Normalize the usage of if/when-let with that of letArtur Malabarba2015-10-21
|
* Remove many uses of `newline' for (insert "\n")Artur Malabarba2015-10-21
|
* [Fix #1348] Remove dash dependencyRoger Gilliar2015-10-19
|
* Further unentangle cider-interaction from the other filesArtur Malabarba2015-10-01
|
* Update copyright yearsBozhidar Batsov2015-03-01
|
* Use #' where appropriateBozhidar Batsov2015-01-24
|
* Take care of a compilation warningBozhidar Batsov2015-01-24
|
* Rewrite `sync-request` subsystemVitalie Spinu2014-09-15
| | | | | | | | | | | | | | | | Changes to `nrepl-send-sync-request`: - returned response is now a standard nREPL dict - returned response is a merged dict of all the responses received so far Other changes: - remove macroexpand-1 macroexpand-all from cider-required-nrepl-ops - Reduce redundancy in eval APIs by removing several eval functions on CIDER side. They were either not used or could be replaced with direct calls to nrepl API. - Enforce `cider-sync-request:OP` convention and move all requests into `cider-client.el`.
* Add command cider-open-classpath-entryBozhidar Batsov2014-09-02
|
* Add a basic Java classpath browserBozhidar Batsov2014-09-01