summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
Commit message (Collapse)AuthorAge
* [Fix #408] Bump version to 0.3.1Bozhidar Batsov2013-10-29
|
* Release 0.3.0Bozhidar Batsov2013-10-28
|
* Apply ANSI color to all outputBozhidar Batsov2013-10-28
|
* [Fix #393] Detect properly ns formsBozhidar Batsov2013-10-23
| | | | | | ns forms are always evaluated in the "user" namespace. Unfortunately the code that was checking for namespace forms was flawed and considered ns forms anything with "(ns ..." in it.
* Look for nrepl port in .nrepl-port as well.Toby Crawley2013-10-23
| | | | | | | | Leiningen, Immutant, and soon mod-lang-clojure for Vert.x all write the repl port to project-dir/.nrepl-port as a standard, well-known location. This patch adds support for checking that file as well. See https://github.com/technomancy/leiningen/issues/1296
* Make cider-repl-set-ns usable in REPL buffersBozhidar Batsov2013-10-22
| | | | | When invoked in a REPL the command will prompt for the namespace to switch to.
* [Fix #386] Add support for displaying the REPL in the current windowBozhidar Batsov2013-10-21
|
* Update changelogBozhidar Batsov2013-10-18
|
* Bump version to 0.2.0Bozhidar Batsov2013-10-10
|
* [#377] Restore support for Clojure 1.4Bozhidar Batsov2013-10-03
|
* Update the ChangelogBozhidar Batsov2013-10-03
|
* Rename nrepl-mode to nrepl-repl-modeBozhidar Batsov2013-09-29
|
* [Fix #377] Mention that 0.2.0 requires Clojure 1.5Bozhidar Batsov2013-09-28
|
* [Fix #349] Proper Clojure indentation for REPL buffersBozhidar Batsov2013-09-24
|
* Merge pull request #363 from jonpither/masterBozhidar Batsov2013-09-16
|\ | | | | connection-buffer name uses project-directory
| * Name of connection and server buffer uses project name and portJon Pither2013-09-16
| |
* | Bind C-c C-q to nrepl-quitBozhidar Batsov2013-09-16
|/
* Add `nrepl-switch-to-relevant-repl-buffer' as separate functionality.Vedang Manerikar2013-08-22
| | | | | | | | | | | Commit 12558e8 breaks `nrepl-switch-to-repl-buffer' functionality by assuming that all nrepl connections will be made using `nrepl-jack-in'. This commit reverts to old `nrepl-switch-to-repl-buffer'. A new function `nrepl-switch-to-relevant-repl-buffer' is added as a convenience function to switch to the correct nrepl buffer from a given clojure buffer.
* Rotate and display nrepl connectionJon Pither2013-08-18
|
* Show port along with project name in `nrepl-repl-buffer-name'Vedang Manerikar2013-08-18
| | | | | - Add tests for new `port-in-nrepl-repl-buffer-name' functionality - Add documentation about displaying port name in nrepl-repl-buffer-name
* clojure buffer name uses project nameJon Pither2013-08-14
|
* nrepl-switch-to-repl-buffer uses buffer matching current namespaceJon Pither2013-08-11
|
* Fix nrepl-selector key bindingMiikka Koskinen2013-08-08
| | | | | | | Previously C-c M-s was bound to `nrepl-select`, which does not exist. You'd get this error message: > Symbol's function definition is void: nrepl-select
* Fix keybinding highlightingBozhidar Batsov2013-08-08
|
* Prepare for 0.2.0Bozhidar Batsov2013-08-08
|
* Release 0.1.8Bozhidar Batsov2013-08-08
|
* Merge pull request #311 from klang/feature/remote-nrepl-and-nrepl-jumpBozhidar Batsov2013-07-28
|\ | | | | Feature/remote nrepl and nrepl jump
| * fix nrepl-jump on remote nrepl connectionKarsten Lang2013-07-28
| | | | | | | | | | | | | | | | minor changes made to conform with travis tests Depending on tramp. Using tramp functions to determine tramp prefix. home-prefix-adjustment will consider windows. nrepl-emacs-or-colojure-side-adjustment pushed up the call chain. Tested on Windows, MacOS, Linux. Travis is being picky :-)
* | Add extendable SLIME-style Selector to nREPLIan Eslick2013-07-25
| |
* | Use the contents of target/repl-port as default port, if presentJim Crossley2013-07-25
| |
* | Always evaluate ns forms in the user namespace.Sam Aaron2013-07-25
| | | | | | | | | | | | | | This allows ns forms to be interactively evaluated to create new namespaces without them having had to already exist through other means. This is something I almost always find myself doing in a live coding workflow.
* | Add feature: switch back to clojure bufferJerry Peng2013-07-25
| | | | | | | | | | | | | | | | | | Try to remember the clojure buffer before nrepl/nrepl-jack-in/nrepl-swith-to-nrepl-buffer, so that the user could jump back to the original clojure buffer from the repl buffer. The key binding is also C-c C-z, which makes it convenient to jump between clojure and repl buffers.
* | Enhanced error highlighting, errors in red, warnings in yellow.Neale Swinnerton2013-04-03
|/
* Add 0.1.8 section to changelog.Tim King2013-03-13
|
* Update changelog for 0.1.7.Tim King2013-03-13
|
* Merged with master.Tim King2013-03-11
|
* Merge #275 - colorize output sent to nrepl buffer.Tim King2013-02-19
|
* Introduce the option to hide special buffersBozhidar Batsov2013-02-12
| | | | | | Some "boring" buffers can now optionally be hidden by the users via the use of the `nrepl-hide-special-buffers` setting. By default all special buffers are visible.
* Merge pull request #269 from bbatsov/update-changelogTim King2013-02-11
|\ | | | | Mention `nrepl-jack-in` and `nrepl` keybindings in the CHANGELOG
| * Mention `nrepl-jack-in` and `nrepl` keybindings in the CHANGELOGBozhidar Batsov2013-02-10
| |
* | Fixes for compilation-error-regexp-alistJose Antonio Ortega Ruiz2013-02-10
|/ | | | | | | | | | | | | - Makes matching of filenames of the form (foo.clj:XX) in stacktraces more accurate (avoiding some spurious highlighting in compilation buffers). - Uses a more idiomatic entry for `compilation-error-alist`, namely a symbol which points to `compilation-error-regex-alist-alist`. - Moves the code adding entries to the former variables to the top-level, instead of calling it over and over everytime a repl is started.
* Merge pull request #259 from jaor/local-popupTim King2013-02-09
|\ | | | | Allow local values for nrepl-popup-stacktraces
| * CHANGELOG and README entries for nrepl-popup-stacktraces-in-replJose Antonio Ortega Ruiz2013-02-10
| |
* | Add multi REPL readme section and changelog entryHugo Duncan2013-02-07
|/
* Fix 0.1.5 date.Tim King2013-02-07
|
* Added history back to initial version.Tim King2013-02-07
|
* Added 0.1.5 section to changelog.Tim King2013-02-07
|
* Added 0.1.6 section to changelog.Tim King2013-02-07
|
* Add info about `M-.` to the CHANGELOG. EOMTim Visher2013-02-03
|
* Rename Changelog.md to CHANGLELOG.md for consistency.Bozhidar Batsov2013-01-31