summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Use cider-doc-javadoc instead of cider-javadocBozhidar Batsov2014-07-28
|
* Add quit to the doc menuBozhidar Batsov2014-07-28
|
* [Fix #681] Add a few extra keybindings to cider-macroexpansion-minor-mode-mapBozhidar Batsov2014-07-28
|
* Recommend @alexander-yakushev's ac-cider-compliment over ac-nreplBozhidar Batsov2014-07-28
|
* Make namespace display in the macroexpansion buffer configurableBozhidar Batsov2014-07-28
|
* Fix a variable nameBozhidar Batsov2014-07-28
|
* [Fix #677] Pass ns to the macroexpand opsBozhidar Batsov2014-07-28
|
* Mention that CIDER 0.7 users should remove clojure-test-modeBozhidar Batsov2014-07-28
|
* Replace * in grimoire urlsBozhidar Batsov2014-07-25
|
* Replace ! in grimoire urlsBozhidar Batsov2014-07-25
|
* Merge pull request #676 from otfrom/handle-grimoire-qmarkBozhidar Batsov2014-07-25
|\ | | | | Replace ? in grimoire URLs.
| * Replace ? in grimoire URLs.Bruce Durling2014-07-25
|/ | | | Otherwise they 404.
* Add Grimoire integrationBozhidar Batsov2014-07-24
|
* Merge pull request #673 from danskarda/fix-670Bozhidar Batsov2014-07-23
|\ | | | | [Fix #670] Save point between two inserts to popup buffer.
| * [Fix #670] Save point between two inserts to popup buffer.Daniel Skarda2014-07-23
|/ | | | | Solution is inspired by "Process Filter Example" from Emacs Lisp manual (including moving point if it was at the insert position).
* [Fix #670] More robust Clojure font-locking for the *cider-result* bufferBozhidar Batsov2014-07-23
|
* Merge pull request #672 from hugoduncan/feature/fix-jump-to-for-trampBozhidar Batsov2014-07-23
|\ | | | | Fix cider-jump-to for tramp
| * Fix cider-jump-to for trampHugo Duncan2014-07-23
|/ | | | Fix the opening of resources in jar files on tramp connections (broken by 7a63d2b).
* [Fix #669] Suppress major mode hooks in cider-font-lock-asBozhidar Batsov2014-07-23
|
* Fix default nrepl handlerBozhidar Batsov2014-07-21
|
* Code styleBozhidar Batsov2014-07-21
|
* [Fix #668] Handle stderr in default handlerBozhidar Batsov2014-07-21
|
* [Fix #662] Use Clojure font-lock for results displayed in popup buffersBozhidar Batsov2014-07-18
|
* [Fix #655] Improve the error highlighting logicBozhidar Batsov2014-07-18
| | | | | | | | The old code was pretty inconsistent - it was using one type of function to find the beginning of the region to highlight and another to find its end. Now we try to find a list, vector, map or set literal opening bracket and jump to its closing bracket from there. We also take care not to be fooled by strings.
* Removed the ability to manage *print-length*Bozhidar Batsov2014-07-17
| | | | | | | This was causing a bit of confusion among the users, because they weren't aware the config was only applied on REPL start. Looking back it was a mistake to try to manage this via CIDER as setting it via lein is preferable.
* Merge pull request #667 from sw1nn/test-report-mode-keybindingsBozhidar Batsov2014-07-16
|\ | | | | Add keybindings for buttons in test-report mode.
| * Add keybindings for buttons in test-report mode.Neale Swinnerton2014-07-16
|/ | | | This is the same change as #666 repeated in another minor mode.
* Merge pull request #666 from sw1nn/doc-mode-keybindingsBozhidar Batsov2014-07-16
|\ | | | | Add standard key bindings for buttons in doc-mode.
| * Add standard key bindings for buttons in doc-mode.Neale Swinnerton2014-07-16
|/ | | | | | | TAB - forward-button <backtab> - backward-button These are useful when the docs have URLs etc in them.
* Extend a bit the words of inspirationBozhidar Batsov2014-07-14
|
* Merge pull request #664 from jeffvalk/masterBozhidar Batsov2014-07-11
|\ | | | | Add apropos support.
| * Add apropos support.Jeff Valk2014-07-11
| | | | | | | | | | Add apropos search for function/var names (bound to <kbd>C-c C-h a</kbd>) and documentation (bound to <kbd>C-c C-h d</kbd>).
* | Merge pull request #663 from jeffvalk/masterBozhidar Batsov2014-07-08
|\| | | | | [Fix #633] Refactor `cider-find-` and `cider-jump-`.
| * [Fix #633, #659] Refactor `cider-find-` and `cider-jump-`.Jeff Valk2014-07-08
|/ | | | | | | | | | | The functions for resolving and jumping to vars and files had become unwieldy. This makes them tractable, and uses the simplified behavior to fix: 1. The `cider-jump` and `cider-test-clear-highlights` cases where a var exists after the file in which it was defined has been deleted. 2. The `cider-test-clear-highlights` case where the user closes one REPL session and starts another in a different project.
* Merge pull request #658 from scottdw/fix-605Bozhidar Batsov2014-07-03
|\ | | | | [Fix #605] Url decode resource URLs and remove leading '/' from windows paths.
| * Use cider--resource-file-url-to-filename to get jar path.Scott Douglas-Watson2014-07-02
| |
| * [Fix #605] Ensure that resource file urls are decoded and correct on Windows.Scott Douglas-Watson2014-07-02
|/ | | | | | cider--resource-file-url-to-file function created that extracts the filename from the url, decodes it, and drops the leading '/' if the path is a Windows path.
* Merge pull request #650 from dgtized/scratch-needs-spaceBozhidar Batsov2014-06-24
|\ | | | | Move point on new scratch buffers below comments
| * Move point on new scratch buffers below commentsCharles Comstock2014-06-24
|/ | | | | This matches the behavior of a newly created emacs scratch buffer. Merges insert forms as it accepts &rest arguments.
* Make it more obvious that cider-jack-in is simply using leinBozhidar Batsov2014-06-24
|
* Merge pull request #647 from dgtized/repl-should-shadow-lisp-evalBozhidar Batsov2014-06-24
|\ | | | | Use cider variants of lisp-eval-region and eval-last-sexp in repl
| * Use cider variants of lisp-eval-region and eval-last-sexp in replCharles Comstock2014-06-24
|/ | | | | | | It's an odd use case, but using C-c C-r or C-x C-e inside of a cider repl should not throw an error about missing an inferior lisp process. It is useful for inspecting values in the middle of a longer sexp. This adds the same bindings used in the cider minor mode to the repl.
* Add empty string check to cider-read-symbol-nameBozhidar Batsov2014-06-23
| | | | | cider-symbol-at-point actually returns an empty string instead of nil when there is no symbol at point.
* Fix a docstringBozhidar Batsov2014-06-20
|
* Refine a bit cider-jump-to-resourceBozhidar Batsov2014-06-19
|
* Merge pull request #644 from jeffvalk/masterBozhidar Batsov2014-06-19
|\ | | | | Restore errantly removed 'cider-stacktrace-face'.
| * Restore errantly removed 'cider-stacktrace-face'.Jeff Valk2014-06-19
| |
* | [Fix #640] Add instructions for using CIDER with embedded nREPL serversBozhidar Batsov2014-06-19
| |
* | Fix another typoBozhidar Batsov2014-06-19
| | | | | | | | Today is definitely not my day...
* | Fix cider-jump-to-resource's keybindingBozhidar Batsov2014-06-19
| |