summaryrefslogtreecommitdiff
path: root/test/cider-tests--no-auto.el
Commit message (Collapse)AuthorAge
* 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 a few occurrences of when + not with unlessBozhidar Batsov2017-12-24
|
* 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
* Kill an obsolete requireBozhidar Batsov2017-03-08
|
* 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
|
* Update a reference to ertBozhidar Batsov2016-04-29
|
* Migrate non-automated tests to buttercupcskksc2016-04-19
|
* Update a few copyright headersBozhidar Batsov2016-03-27
|
* Update the copyright yearsBozhidar Batsov2016-01-01
|
* Fix a requireBozhidar Batsov2015-10-20
|
* [Fix #1348] Remove dash dependencyRoger Gilliar2015-10-19
|
* Remove an unused function parameterLars Andersen2015-08-30
|
* Continue to decouple CIDER from nrepl-clientBozhidar Batsov2015-08-29
| | | | This time around we tackle all remaining requests.
* Add CIDER wrappers for nrepl-send-request and nrepl-send-sync-requestBozhidar Batsov2015-08-27
| | | | One more step towards decoupling CIDER and nrepl-client.
* Update copyright yearsBozhidar Batsov2015-03-01
|
* 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`.
* [fix #772] and fix broken `cider-eval-and-get-value`Vitalie Spinu2014-09-10
| | | | - rename `cider-eval-and-get-value` into `cider-sync-eval-and-parse`
* Refactor and document nrepl-client.elVitalie Spinu2014-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | Refactor: - general code and documentation cleanup - use -- convention for internal function of very limited use - inline several very short internal functions - use systematic naming convention for requests. Namely nrepl-send-request and nrepl-send-sync-request for workhorse functions and `nrepl-request:XXX` and `nrepl-sync-request:OP` for requests of type "OP". - rename `nrepl-send-request-sync` into `nrepl-send-sync-request` - delete `nrepl-log-messages` command Reorganize nrepl-client.el in functional chapters: - Bencode - Client: Process Filter - Client: Initialization - Client: Response Handling - Client: Request Handling - Server - Utilities - Connection Buffer Management - Connection Browser Document the nREPL communication process.
* Update 'doc' for special forms and Java symbols.Jeff Valk2014-05-03
Add tests for equality to the canonical 'clojure.repl/doc' format. Refactor doc formatting function. Update doc tests to fail (not error) when returned doc is nil.