summaryrefslogtreecommitdiff
path: root/cider-common.el
Commit message (Collapse)AuthorAge
* [Fix #2148] Fix jump to definition for remote cider-jack-in or cider-connect ↵HyungSuk Ryu2018-01-12
| | | | | | | | | | | | (#2156) The `cider-tramp-prefix` does not return only tramp prefix. It used the `tramp-make-tramp-file` in the `with-parsed-tramp-file-name` which force it to make a full tramp file path, not only prefix. I placed the `cider-make-tramp-prefix` for making prefix only. It is modified a little bit from `tramp-make-tramp-file`. The `cider--client-tramp-filename` does not remove `file: scheme` for tramp filename. It should return the string with tramp prefix and remote source path. But previous version leaves `file: scheme` in a remote source path. I just added a line to remove this scheme in this function. The `cider-find-file` leaves a useless list buffer per opening remote archived source like zip, jar. When continuously tracking, it'll will generate a lot of trash and make us tired to remove it. Now it'll be removed automatically.
* Bump the copyright yearsBozhidar Batsov2018-01-01
|
* Use 6-arg version of `tramp-make-tramp-file-name` for Emacs 26Tianxiang Xiong2017-12-18
| | | | See: https://travis-ci.org/clojure-emacs/cider/jobs/317868996#L811
* Replace `if-let` and `when-let` with starred versionsTianxiang Xiong2017-12-11
| | | | | | | | | | Fix #2130. Emacs 26 obsoletes `if-let` and `when-let`, replacing them with `if-let*` and `when-let*`. This raises byte-compilation warnings (treated as errors) when testing against Emacs 26. See: http://git.savannah.gnu.org/cgit/emacs.git/tree/etc/NEWS?h=emacs-26#n1278
* 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
|
* [Fix #1707] Add customization for line truncating in special buffersBartłomiej Kruczyk2016-10-16
|
* Fix tramp compile warningsArtur Malabarba2016-05-01
|
* Fix a compile warningArtur Malabarba2016-04-30
|
* Move dictionary manipulation to its own file, nrepl-dict.elArtur Malabarba2016-04-30
| | | | | | A lot of .el files have to manipulate dictionaries, so this forced a lot of files to depend on nrepl-client.el. These were muddy waters if we plan on supporting SocketREPL.
* Allow the ns displayed by eldoc to be tailored via cider-eldoc-ns-functionBozhidar Batsov2016-04-24
|
* Fix enlighten-mode accidentally moving pointArtur Malabarba2016-04-16
|
* Fix typoArtur Malabarba2016-04-13
|
* Fix some copyright symbolsBozhidar Batsov2016-04-09
|
* [#1352] Documentation complies with checkdoc styleChaitanya Koparkar2016-04-06
|
* Move cider-expected-ns to cider-client.elBozhidar Batsov2016-03-27
| | | | I should have thought more before placing it in cider-common.el.
* Move cider-expected-ns to cider-common.elBozhidar Batsov2016-03-27
|
* When prompting for a symbol, be willing to look backwards a bitArtur Malabarba2016-02-07
|
* Update the copyright yearsBozhidar Batsov2016-01-01
|
* [Fix #1392] Track definitions made in the REPLBozhidar Batsov2015-11-03
|
* Normalize the usage of if/when-let with that of letArtur Malabarba2015-10-21
|
* [Fix #1348] Remove dash dependencyRoger Gilliar2015-10-19
|
* Fix a docstringBozhidar Batsov2015-10-11
|
* Add missing "commentary" sectionBozhidar Batsov2015-10-11
|
* [#735] Use built-in cygwin functionsJuergen Hoetzel2015-09-28
| | | | | | Use `cygwin-convert-file-name-to-windows' and `cygwin-convert-file-name-from-windows' instead of executing external "cygpath" commands.
* Fix some bad declaresArtur Malabarba2015-09-25
|
* Move many common-use functions to cider-common.elArtur Malabarba2015-09-23
Also rename -jump-back to -pop-back