summaryrefslogtreecommitdiff
path: root/cider.el
Commit message (Collapse)AuthorAge
* Merge tag 'v0.19.0+dfsg'Sean Whitton2019-01-10
|\ | | | | | | DFSG-clean upstream version 0.19.0
| * Release 0.19Bozhidar Batsov2019-01-01
| |
| * Bump the copyright yearsBozhidar Batsov2019-01-01
| |
| * Set a name for the upcoming releaseBozhidar Batsov2018-12-31
| |
| * [#1544] Add defcustom cider-infer-remote-nrepl-ports (#2506)Aaron Iba2018-12-21
| |
| * Inject nREPL 0.5.3Bozhidar Batsov2018-12-12
| |
| * Inject nREPL 0.5.2Bozhidar Batsov2018-12-10
| |
| * Inject nREPL 0.5.0Bozhidar Batsov2018-11-28
| |
| * Use symbols for repl types instead of strings and efficient comparisonsDieter Komendera2018-11-18
| | | | | | | | Make public functions backwards compatible by converting type string to symbol
| * Bump the auto-injected version of piggiebackBozhidar Batsov2018-10-21
| |
| * Improve the missing piggieback error messageBozhidar Batsov2018-10-19
| |
| * Tweak some Clojure and ClojureScript referencesBozhidar Batsov2018-10-19
| |
| * Quote middleware parameter when invoking cljArne Brasseur2018-10-18
| | | | | | | | | | | | | | | | | | Add quotes around the --middleware flag Before: `--middleware ["cider.nrepl/nrepl-middleware"]` After: `--middleware '["cider.nrepl/nrepl-middleware"]'` This prevents issues with shells like zsh that treat square brackets special.
| * Bump the dev version to 0.19Bozhidar Batsov2018-10-18
| | | | | | | | | | Seems we'll be skipping the bugfix release and go straight for a small feature release.
| * Update the Clojure CLI jack-in commandBozhidar Batsov2018-10-18
| | | | | | | | | | Now that nREPL supports this directly we no longer need to go through cider-nrepl.main.
| * Bump the injected cider-nrepl versionBozhidar Batsov2018-10-14
| |
| * Bump Sesman's versionVitalie Spinu2018-10-13
| |
| * [Fix #2446] Implement Sesman friendly sessionsVitalie Spinu2018-10-13
| |
| * [Fix #2482] Don't bind nREPL server to ::Bozhidar Batsov2018-10-12
| | | | | | | | Use localhost instead.
| * Add missing cider-default-cljs-repl defcustom entriesAndrea Richiardi2018-10-10
| | | | | | | | Both Figwheel Main and Shadow w/o Server, aka shadow-select were missing.
| * [Fix #2441] Autoload cider-start-mapVitalie Spinu2018-09-23
| |
| * [Fix #2440] Make use of `cider-check-cljs-repl-requirements`Vitalie Spinu2018-09-23
| |
| * Update the links to the manualBozhidar Batsov2018-09-23
| | | | | | | | ReadTheDocs finally supports https for custom domains.
| * Inject nREPL 0.4 instead of nREPL 0.2Bozhidar Batsov2018-09-15
| | | | | | | | | | | | | | | | | | | | The only downside of that change is that users of older Boot/Lein will end up using an older version of the legacy nREPL 0.2, but that should not affect them negatively, as the differences between 0.2.12 and 0.2.13 are pretty small. Generally we could have just injected both versions, but I've noticed that's pretty confusing for the users, so I'd rather us not do it.
| * Replace usages of eval-after-load with with-eval-after-loadBozhidar Batsov2018-09-15
| | | | | | | | | | | | | | | | | | | | | | | | `with-eval-after-load` was introduced in Emacs 24.4 and its usage results in a cleaner code. `eval-after-load` is considered ill-behaved because it is a function, not a macro, and thus requires the code inside it to be quoted, which means that it cannot be byte-compiled. It also accepts only one form, so if you have more than one, you need to use `progn`. More details - https://stackoverflow.com/questions/21880139/what-is-with-eval-after-load-in-emacs-lisp
| * Bump the development versionBozhidar Batsov2018-09-04
| |
* | Merge tag 'v0.18.0+dfsg' into wip/masterSean Whitton2018-09-08
|\| | | | | | | DFSG-clean upstream version 0.18.0
| * Release 0.18.0Bozhidar Batsov2018-09-02
| |
| * Bump the auto-injected piggieback depBozhidar Batsov2018-08-31
| |
| * [Fix #2413] Prompt if a session with the same parameters already existsVitalie Spinu2018-08-30
| |
| * [Fix #2425] Implement "pending-cljs" REPL typeVitalie Spinu2018-08-30
| | | | | | | | | | | | - Uninitialized cljs REPLs now have "pending-cljs" type - TYPE argument of `cider-repls` can be now a list - `cider-map-repls` maps only over functional (non-pending) REPLs
| * [Fix #2418] Don't overwrite explicitly supplied params in connect-sibling-xyzVitalie Spinu2018-08-30
| |
| * Fix linter on Emacs develVitalie Spinu2018-08-30
| |
| * Fix the name of the boot nrepl-server taskBozhidar Batsov2018-08-26
| |
| * [Fix #2427] Handle properly multiple project typesBozhidar Batsov2018-08-25
| | | | | | | | | | | | | | There were two problems fixed in this commit: * `default` has to be a string for completing-read to work * completing-read returns a string, but we need a symbol
| * Fix the build tool detectionBozhidar Batsov2018-08-22
| |
| * Fix indentationBozhidar Batsov2018-08-22
| |
| * Make the project-type a symbolBozhidar Batsov2018-08-22
| | | | | | | | | | | | | | | | That's more in line with Emacs conventions. This commit also changes config values that used to be strings to symbols, but also preserves backward compatibility in cases so users changed the defaults.
| * Add a todo about cider-jack-in-default's current position in the codeBozhidar Batsov2018-08-22
| |
| * [Fix #2424] Fallback to lein on jack-in when clojure is missingBozhidar Batsov2018-08-22
| | | | | | | | | | | | The Clojure CLI tools are not available on Windows yet, so for them `clojure-cli` is a poor default. Now we set the default in a dynamic fashion.
| * Rename cider-default-repl-command to cider-jack-in-defaultBozhidar Batsov2018-08-22
| |
| * Don't be super specific about certain dep versionsBozhidar Batsov2018-08-18
| |
| * Bump the required clojure-mode versionBozhidar Batsov2018-08-18
| |
| * [Fix #2419, Fix #2414] Bump sesman versionVitalie Spinu2018-08-17
| |
| * [Fix #2401] Correctly pass dynamic vars to cider--update-jack-in-cmdVitalie Spinu2018-08-13
| |
| * Bump the injected piggieback to 0.3.8Bozhidar Batsov2018-08-06
| | | | | | | | It's the first version that supports nREPL 0.4+.
| * Modify cider-boot-parameters to match the new boot taskAndrea Richiardi2018-08-06
| |
| * Stop releasing CIDER and cider-nrepl togetherBozhidar Batsov2018-08-06
| | | | | | | | | | cider-nrepl now has its own release cycle and CIDER introduces `cider-required-middleware-version` to track it.
| * Add shadow-select CLJS REPL type (#2397)Andrea Richiardi2018-08-02
| | | | | | | | | | | | | | This kind of CLJS REPL is very helpful for cases when you are already watching one or more shadow builds in shadow either after having launched the server in a terminal or from within Cider. This patch also refactors option normalization out of figwheel-main so that it can be reused by every other function.
| * Update docstringBozhidar Batsov2018-08-02
| |