summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
Commit message (Collapse)AuthorAge
* Add a missing Changelog entryArtur Malabarba2015-10-19
|
* [Fix #1371] Font-lock deprecated vars with a background colorArtur Malabarba2015-10-19
|
* [Fix #1300] Make it possible to quickly replicate an existing nREPL connectionBozhidar Batsov2015-10-17
|
* [Fix #1328] Auto-scroll the *nrepl-server* bufferBozhidar Batsov2015-10-10
|
* Small changelog fixesBozhidar Batsov2015-09-20
|
* Add cider-load-buffer-and-switch-to-repl-bufferJeremy Heiler2015-09-20
|
* [Fix #715] Add jump to error location when clicking on error messageRafik Naccache2015-09-14
|
* Implement dynamic font-lockingArtur Malabarba2015-09-09
| | | | | | Ditch instrumented defs overlay for the new font-locking. All macros are now font-locked. This is configurable via the cider-font-lock-dynamically variable.
* New possible value for `cider-prompt-save-file-on-load'Artur Malabarba2015-08-23
|
* [Fix #1252] Fix breakage in cider-repl-clear-bufferLars Andersen2015-08-17
| | | | | | | | | | | | | | | After running cider-repl-clear-buffer and then loading a file creating output (e.g. because it contains println statements) the output would appear in the wrong place, causing the prompt to disappear. The problem was in the function responsible for putting POINT in the right place before emitting evaluation results into the repl buffer. When the prompt was the first line in the buffer, cider-repl--end-of-line-before-input-start didn't move point at all. cider-repl--end-of-line-before-input-start is now changed to move backward past the cider-repl-prompt field in order to find the appropriate output position.
* [Fix #1239] Add cider-refresh-show-log-bufferMichael Griffiths2015-08-16
|
* Mention the new smart connection routing in the changelogBozhidar Batsov2015-08-16
|
* Move a changelog entry to the changes sectionBozhidar Batsov2015-08-16
|
* Remove some obsolete changelog entriesBozhidar Batsov2015-08-16
|
* Rename cider-repl-output-face and cider-repl-err-output-faceBozhidar Batsov2015-08-16
|
* [Fix #1197] Display some indication that we're waiting for a result for ↵Anatoly Smolyaninov2015-08-15
| | | | long-running evaluations
* [Fix #1127] Make it possible to associate a buffer with a connectionBozhidar Batsov2015-08-13
|
* Adjust terminologyBozhidar Batsov2015-08-11
|
* [#1217] Add a command for associating projects with connectionsBozhidar Batsov2015-08-10
| | | | | This command should mostly be used with connections created using `cider-connect`.
* Make it possible to disable Clojure font-locking for interactive eval resultsBozhidar Batsov2015-08-09
| | | | | This can potentially yield performance improvements when dealing with huge results.
* [Fix #1079] Don't font-lock very long resultsBozhidar Batsov2015-08-09
| | | | | | Font-locking extremely long strings is pretty slow (and might generate errors in some cases), so it's now conditional. This behavior is adjustable via `cider-font-lock-max-length`.
* [Fix #1177] Add TAB and RET keys to the test-report bufferArtur Malabarba2015-08-08
|
* [Fix #1222] Add option to apply a single face to the results overlayArtur Malabarba2015-08-07
| | | | | New variable, cider-ovelays-use-font-lock controls whether results overlay should be font-locked or just use a single face
* Add support for `refresh-clear` middleware opMichael Griffiths2015-08-07
|
* Merge pull request #1235 from Malabarba/masterBozhidar Batsov2015-08-05
|\ | | | | Add support for `(...) to the debugger
| * Add support for `(...) to the debuggerArtur Malabarba2015-08-04
| | | | | | | | | | This covers most cases, but it still doesn't cover when there's a hard quote inside the backticked form.
* | [#1236] Add two more functions for use in cider-repl-prompt-functionArtur Malabarba2015-08-04
|/
* [Fix #1220] Treat keywords as symbols in lookup commandsBozhidar Batsov2015-07-26
| | | | | Basically, if the thing at point is `:clojure.core/str` we'll treat it as `clojure.core/str` in commands like `cider-find-var'.
* Add support for `before` and `after` refresh middleware optsMichael Griffiths2015-07-19
|
* Log cider-refresh messages to a dedicated bufferMichael Griffiths2015-07-19
|
* Add pagination of long collections to inspectorAlexander Yakushev2015-07-18
|
* Log nREPL messages by defaultBozhidar Batsov2015-07-15
|
* Integrate overlays with interactive evaluationArtur Malabarba2015-07-13
| | | | Fixes #1196
* Add CLJS support to Readme and ChangelogArtur Malabarba2015-07-13
|
* [Fix #1189] Don't show result from automatic ns evalutionBozhidar Batsov2015-07-12
|
* Configurable print-level and length for debugger valuesArtur Malabarba2015-07-10
|
* New debugging tool-barArtur Malabarba2015-07-08
|
* Add configuration to move or remove the debugger's input promptArtur Malabarba2015-07-07
|
* Add a menu to debug-modeArtur Malabarba2015-07-07
|
* On killing the client, ask the user about killing the server tooArtur Malabarba2015-07-05
|
* [Fix #732] Change the semantics of cider-quit and cider-restartBozhidar Batsov2015-07-04
| | | | | By default now they operate only on the currently active connection. With a prefix argument they operate on all connections.
* CHANGELOG and READMEArtur Malabarba2015-07-03
|
* Add inspecting to the debuggerArtur Malabarba2015-07-01
|
* Fix the changelog formatBozhidar Batsov2015-07-01
|
* Define command to run -mainArtur Malabarba2015-06-30
| | | | Fix #1011
* Default project prompt to nrepl-project-directoryRyan Fowler2015-06-29
| | | | | cider-set-relevant-connection was defaulting to the current file's directory which was not a project directory.
* Extract function cider-set-relevant-connectionRyan Fowler2015-06-29
| | | | | This makes it easier to configure C-c C-k to switch to the appropriate connection before trying to load the buffer.
* Rewrite the debuggerArtur Malabarba2015-06-28
| | | | | | | | There's no longer any need to call instrument-and-eval on code to instrument it. Just passing the code with a #dbg or a #bp reader macro is enough. Also document new debugging entry points, and add a changelog.
* Fix a malformed call-siteOleh Krehel2015-06-25
| | | | | | * cider-browse-ns.el (cider-browse-ns--doc-at-point): Fixup. * CHANGELOG.md: Update.
* Release 0.9.1Bozhidar Batsov2015-06-24
|