summaryrefslogtreecommitdiff
path: root/cider-overlays.el
Commit message (Collapse)AuthorAge
* Add a missing :package-version propertyBozhidar Batsov2017-04-30
|
* 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
|
* Remove a reference to cider-inspect-read-and-inspect (#1703)Chaitanya Koparkar2016-04-20
| | | It was marked obsolete recently.
* [Fix #1692] Truncate very long overlaysArtur Malabarba2016-04-20
|
* [Fix #1659] Add fringe indicators for evaluated formsArtur Malabarba2016-04-20
|
* [#1689] Destroy result overlays if the code is editedArtur Malabarba2016-04-18
|
* Change cider-type overlay property to categoryArtur Malabarba2016-04-12
|
* [#1352] Documentation complies with checkdoc styleChaitanya Koparkar2016-04-06
|
* Display multi-line eval overlays at the start of the following lineArtur Malabarba2016-04-03
| | | | | It looked weird that these overlays started on the middle of a line, but then folded onto the start of following lines.
* Extend copyright in cider-debug and cider-overlaysArtur Malabarba2016-03-23
| | | | They were originally generated by `auto-insert`
* Only use buttons for debugging when inlinedArtur Malabarba2016-03-20
|
* Rename an argument from X to OVArtur Malabarba2016-03-06
|
* C-u C-M-x now inserts a literal #dbg into the bufferArtur Malabarba2016-03-06
| | | | | | | This #dbg is covered in a fragile overlay. This means hitting RET or deleting any char in it deletes the whole thing. Related to #1591
* Evaluation only removes overlays created by cider--make-overlayArtur Malabarba2016-03-06
|
* Remove a bunch of stuff that were marked as obsolete in 0.10Bozhidar Batsov2016-02-27
|
* Add missing spaceBozhidar Batsov2016-02-23
|
* Add keyword argument prepend-face to -make-result-overlayArtur Malabarba2016-02-05
|
* Remove an if clause that's always trueArtur Malabarba2016-01-30
|
* Add a FORMAT argument to cider--make-result-overlayArtur Malabarba2016-01-30
|
* Default cider-overlays-use-font-lock to tArtur Malabarba2016-01-30
| | | | Thanks to the previous commit, this is now a very sensible default.
* Always append cider-result-overlay-face to the result stringArtur Malabarba2016-01-30
|
* Generalize the WHERE argument of cider--make-result-overlayArtur Malabarba2016-01-30
|
* Update the copyright yearsBozhidar Batsov2016-01-01
|
* Normalize the usage of if/when-let with that of letArtur Malabarba2015-10-21
|
* [Fix #1378] cider-ovelays-use-font-lock -> cider-overlays-use-font-lockBozhidar Batsov2015-10-20
|
* [Fix #1348] Remove dash dependencyRoger Gilliar2015-10-19
|
* [Fix #1364] Don't rely on multi-arity of <=Artur Malabarba2015-10-13
|
* Speed up cider--make-result-overlayArtur Malabarba2015-10-03
| | | | pos-visible-in-window-p is very slow.
* Make cider--make-result-overlay take keyword argumentsArtur Malabarba2015-10-03
|
* Move many common-use functions to cider-common.elArtur Malabarba2015-09-23
| | | | Also rename -jump-back to -pop-back
* Apply overlay face to the result prefixArtur Malabarba2015-09-04
|
* [Fix #1267] Make results overlay compatible with synchronous evaluationArtur Malabarba2015-08-24
|
* Fix spacing in some docstringsBozhidar Batsov2015-08-09
|
* 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 #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
* Display result in the echo if the edge of the overlay is off the screenArtur Malabarba2015-07-30
|
* Better positioning for the result overlayArtur Malabarba2015-07-16
| | | | | cider--make-result-overlay ensures the the overlay is actually at the end of the sexp.
* Improve usage of the eval result overlaysArtur Malabarba2015-07-16
| | | | | | | | | | | | | | Change display-eval-result to be smarter when it receives a marker, so it does the right thing when the original buffer was killed before evaluation finished. If the result overlay would be out of view (or in a hidden buffer) it will also display the result as a message regardless of user option. Hiding the message is better handled now. Instead of messaging the result and then messaging nil to hide it, we simply message the result with an invisible property. This means it's not displayed in the echo area, but shows up on the Messages buffer.
* Quit the debugger when the buffer is killed or revertedArtur Malabarba2015-07-16
| | | | | | Add some safeguards to stop the debugger when the buffer is killed or reverted, so you don't get stuck in an unrecoverable debugging session.
* Integrate overlays with interactive evaluationArtur Malabarba2015-07-13
Fixes #1196