Skip to content

Releases: masasam/emacs-counsel-tramp

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

14 Jul 12:54
70dcc6b
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:51
aa5acfc
Compare
Choose a tag to compare

Enhancements

Change to use built-in tramp when emacs 29

0.7.5

18 Oct 04:47
Compare
Choose a tag to compare
Fix typo

Bug fix

16 Jun 00:28
Compare
Choose a tag to compare

Bug fix release

Add support controlmaster paths

15 Jun 09:27
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/[email protected] will be generated automatically.
Even if there is no connection setting in ~/.ssh/config, counsel-tramp can complement like bellow.

Add support for top-level sshconfig include

26 Jan 07:20
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/**