Skip to content

Releases: masasam/emacs-helm-tramp

Fix a bug that users who don't have docker installed cannot launch

14 Jul 12:55
6683eae
Compare
Choose a tag to compare

Bugfix

Fix a bug that users who don't have docker installed cannot launch

Change to use built-in tramp when emacs 29

28 Dec 14:49
1071139
Compare
Choose a tag to compare

Enhancements

Change to use built-in tramp when emacs 29

Bug fix

16 Jun 00:29
Compare
Choose a tag to compare

Bug fix release

Add support controlmaster paths

15 Jun 08:26
Compare
Choose a tag to compare

Enhancements

Add support controlmaster paths.
You can use it as follows.

(setq helm-tramp-control-master t)

Set ~/.ssh/config as below

Host *
  ControlMaster auto
  ControlPath ~/.ssh/master-%r@%h:%p
  ControlPersist 30m
  ForwardAgent yes
  ServerAliveInterval 60

Execute the ssh command as follows

ssh ubuntu@1.1.1.1

~/.ssh/master-ubuntu@1.1.1.1 will be generated automatically.
Even if there is no connection setting in ~/.ssh/config, helm-tramp can complement like bellow.

/ssh:ubuntu@1.1.1.1:
/ssh:ubuntu@1.1.1.1|sudo:root@1.1.1.1:/

See #12 .

Add support for top-level sshconfig include

26 Jan 07:16
Compare
Choose a tag to compare

Enhancement

Add support for top-level sshconfig include

~/.ssh/config

Include conf.d/work
Include conf.d/personal

~/.ssh/conf.d/work

Host instance
		HostName ************
		User ************
		
Host archtest
		HostName ************
		User ************

Host debiantest
		HostName ************
		User ************

Host centostest
		HostName ************
		User ************

~/.ssh/conf.d/personal

Host myserver
		HostName ************
		User ************
		
Host myhost
		HostName ************
		User ************

Below is not support

~/.ssh/config

Include conf.d/**