Nice!<p>I do something like this with WezTerm. When I ssh into a server where I work, I can run<p><pre><code> e some/path/whatever
</code></pre>
which just prints a special string containing some control characters, the server hostname and the path. The local wezterm parses it and calls emacsclient with the appropriate TRAMP path. So ssh to server, work there, call `e ~/.bashrc` and the remote file immediately opens in my local emacs.
This is really useful when I am in some deep directory structure.<p>I use the same mechanism to play remote videos - running `mpv experiment/output_foobar.mp4` just prints the special string, which the WezTerm terminal emulator parses and plays the video using my laptop mpv video player. Really really useful for me every day. I run some experiments, can inspect the results immediately. I also have the "reverse scp" which I use from time to time. `rscp foobar.py /tmp/` causes my laptop to download the foobar.py from the current working directory on the remote server into local /tmp/.<p>The mechanism is explained here [1] and here [2]<p>The bash function `e` on the server just prints the special string to SetUserVar with name remotemacs and value hostname---path. In wezterm config I have:<p><pre><code> wezterm.on('user-var-changed',
function(win, pane, name, value)
if name == "remotemacs" then
-- remotemacs:hostname---path
local match_start, match_end, hostname, path = string.find(value, "^(.-)[-][-][-](.-)$")
local tramp_path = "/ssh:" .. hostname .. ":" .. path
wezterm.background_child_process {'sh', '/home/loskutak/scripts/remotemacs', tramp_path}
</code></pre>
[1] <a href="https://wezterm.org/config/lua/window-events/user-var-changed.html" rel="nofollow">https://wezterm.org/config/lua/window-events/user-var-change...</a><p>[2] <a href="https://wezterm.org/recipes/passing-data.html" rel="nofollow">https://wezterm.org/recipes/passing-data.html</a>