We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"It is important to remember that remote_host must be a real host name or an IP address. SSH aliases not allowed to be used with anaconda-mode."
Why is this the case and how to make anaconda-mode work with SSH aliases?
anaconda-mode
The text was updated successfully, but these errors were encountered:
managed to get it working with this change:
modified anaconda-mode.el @@ -470,7 +470,9 @@ called when `anaconda-mode-port' will be bound." anaconda-mode-ssh-process-buffer "ssh" "-nNT" "-L" (format "%s:localhost:%s" (anaconda-mode-port) (anaconda-mode-port)) - (format "%s@%s" (pythonic-remote-user) (pythonic-remote-host)) + (if (pythonic-remote-user) + (format "%s@%s" (pythonic-remote-user) (pythonic-remote-host)) + (pythonic-remote-host)) "-p" (number-to-string (or (pythonic-remote-port) 22))))) ;; prevent race condition between tunnel setup and first use (sleep-for anaconda-mode-tunnel-setup-sleep)
Not sure how robust it is.
Note, I also had to patch pythonic-remote-ssh-p to also check for sshx.
pythonic-remote-ssh-p
sshx
Sorry, something went wrong.
No branches or pull requests
"It is important to remember that remote_host must be a real host name or an IP address. SSH aliases not allowed to be used with anaconda-mode."
Why is this the case and how to make
anaconda-mode
work with SSH aliases?The text was updated successfully, but these errors were encountered: