Skip to content

Commit 0f0f082

Browse files
author
Takashi AOKI
committed
Use sshx instead of ssh in cider-select-endpoint
Modified cider-select-endpoint function to use sshx instead of ssh. This change is useful for users using well-configured login shell and ssh-config.
1 parent c42925f commit 0f0f082

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
* [#934](https://github.com/clojure-emacs/cider/issues/934): Remove
1616
`cider-turn-on-eldoc-mode` in favor of simply using `eldoc-mode`.
17+
* [#953](https://github.com/clojure-emacs/cider/pull/953) Use `sshx` instead of `ssh` in `cider-select-endpoint`
1718

1819
### Bugs fixed
1920

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Create REPL buffer and start an nREPL client connection."
207207
(let* ((change-dir-p (file-remote-p default-directory))
208208
(default-directory (if change-dir-p "~/" default-directory)))
209209
(cider-locate-running-nrepl-ports (unless change-dir-p default-directory)))
210-
(let ((vec (vector "ssh" nil host "" nil))
210+
(let ((vec (vector "sshx" nil host "" nil))
211211
;; might connect to a different remote
212212
(dir (when (file-remote-p default-directory)
213213
(with-parsed-tramp-file-name default-directory cur

0 commit comments

Comments
 (0)