summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Initialize `sesman-system` in all CIDER modesVitalie Spinu2018-07-13
|
* Add `cider-ns-map` and bind to `C-c M-n`Vitalie Spinu2018-07-13
|
* [Fix #2337] Add `cider-start-map` and bind to `C-c C-x`Vitalie Spinu2018-07-13
|
* Bind C-c M-r to cider-restartVitalie Spinu2018-07-13
|
* Add a note about the usage of clojure over cljBozhidar Batsov2018-07-12
|
* Fix some broken formattingBozhidar Batsov2018-07-11
| | | | Unfortunately code snippets don't look good in notices.
* Use a better notation for the breaking changesBozhidar Batsov2018-07-11
|
* Mark major breaking changes in the changelogBozhidar Batsov2018-07-11
|
* Use cider-jack-in-cljs consistently in the code and documentationBozhidar Batsov2018-07-11
|
* Mention the cider command in "Managing Connections"Bozhidar Batsov2018-07-11
|
* Remove a mention of Emacs 24.4Bozhidar Batsov2018-07-11
| | | | Now that we require Emacs 25 that's no longer relevant.
* Add a missing requireBozhidar Batsov2018-07-11
|
* Improve a bit the article on managing connectionsBozhidar Batsov2018-07-10
|
* Fix a broken file referenceBozhidar Batsov2018-07-10
| | | | I didn't noticed this when reviewing my previous changes.
* Add some version info the deprecation messagesBozhidar Batsov2018-07-10
|
* Rename the cider-refresh.el to cider-ns.elBozhidar Batsov2018-07-10
| | | | | | See https://github.com/clojure-emacs/cider/pull/2314 for the rationale behind this change. Basically we plan to put several ns manipulation commands together in the same module.
* Update the manual installation section of the user's manualBozhidar Batsov2018-07-09
|
* Kill a redundant declare-functionBozhidar Batsov2018-07-08
|
* Improve a docstringBozhidar Batsov2018-07-08
|
* Rename cider--recently-visited-buffer to cider-selector--recently-visited-bufferBozhidar Batsov2018-07-08
|
* Add the ability to jump to the profiler buffer using `cider-selector`Bozhidar Batsov2018-07-08
|
* Rename cider--scratch-insert-welcome-message to ↵Bozhidar Batsov2018-07-08
| | | | cider-scratch--insert-welcome-message
* Rename cider-create-scratch-buffer to cider-scratch--create-bufferBozhidar Batsov2018-07-08
|
* Rename cider-find-or-create-scratch-buffer to ↵Bozhidar Batsov2018-07-08
| | | | cider-scratch-find-or-create-buffer
* Remove `cider-visit-error-buffer` in favour of using `cider-selector`Bozhidar Batsov2018-07-07
|
* [Fix #2373] Make it possible to configure the welcome message displayed in ↵Bozhidar Batsov2018-07-06
| | | | scratch buffers
* Try to fix the broken links in the PR templateBozhidar Batsov2018-07-05
|
* Update a reference to Emacs 26.1Bozhidar Batsov2018-07-05
|
* Extend the section on autoloads in the manualBozhidar Batsov2018-07-05
|
* Fix a require in the docsBozhidar Batsov2018-07-05
|
* Add little autoload explanation to Hacking on Cider doc pageAndrea Richiardi2018-07-05
|
* Correctly format shadow command when it is "npx shadow-cljs"dan sutton2018-07-05
| | | | | | | | Previously called `(cider--resolve-command (car (split-string cider-shadow-cljs-command)))` on "npx shadow-cljs" would return "npx" and drop the shadow-cljs. This would lead to the error message that server was not a valid option as the command was "npx [cider-stuff] server" instead of "npx shadow-cljs [cider-stuff] server"
* [Fix #2374] Eliminate nils from the creation of the test requestsBozhidar Batsov2018-07-05
| | | | | | The previous code didn't account for any nils that might come up from the whens. Ideally we should just move this request building to a unit testable function.
* [Fix #2367] Add missing autoload for cider-find-varBozhidar Batsov2018-07-01
|
* [Fix #2352] Preserve current context in `cider-load-buffer`Vitalie Spinu2018-07-01
| | | | ... and `cider-load-file`
* Ensure existence of a REPL in `cider-map-repls`Vitalie Spinu2018-07-01
|
* Fix a few typos and grammarVitalie Spinu2018-07-01
|
* [Fix #2341] Update connection management section in the manual (#2364)Vitalie Spinu2018-06-30
|
* [Fix #2357] Don't add nil keys to the test op requestsBozhidar Batsov2018-06-30
| | | | | They don't make sense and can mess up the request handling on the nREPl side.
* Fix checkdoc error on emacs 27Vitalie Spinu2018-06-30
|
* [Fix #2342] Alias and obsolete variables after #2324Vitalie Spinu2018-06-30
|
* Refactor `cider-switch-to-repl-buffer` and `cider-repl-switch-to-other`Vitalie Spinu2018-06-30
| | | | | | | | - cider-switch-to-repl-buffer uses cider-current-repl instead of implementing its own lookup - cider-repl-switch-to-other throws a "no other REPL" error if no other REPL exists instead of switching to an arbitrary buffer
* Add `ensure` argument to `cider-current-repl` and `cider-repls`Vitalie Spinu2018-06-30
|
* Fix build warningsVitalie Spinu2018-06-30
| | | | Closes #2350
* Remove sesman.elVitalie Spinu2018-06-30
|
* Fix classpath libs functionality on Windows (#2356)Kevin Jiang2018-06-30
|
* [Fix #2317] Allow cancelling stdin promptTimo Freiberg2018-06-30
| | | | | Add handler for the `quit` signal which sends an empty message to nREPL Add C-c C-c binding for `abort-recursive-edit` (which sends a `quit` signal)
* Fix the test selector filtering functionalityBozhidar Batsov2018-06-28
| | | | | It was broken due to a silly typo - "includes" and "excludes" should have actually been "include" and "exclude".
* [#2342] Add a cider-current-connection alias for cider-current-replBozhidar Batsov2018-06-28
| | | | | | | REPLs double as connections in CIDER, so it's useful to be able to refer to them as connections in certain contexts. This also provides backwards compatibility with older CIDER releases.
* [#2342] Add an obsolete alias for cider-current-repl-bufferBozhidar Batsov2018-06-28
| | | | This also fixes https://github.com/clojure-emacs/clj-refactor.el/issues/423.