通过 OSC 52 在 SSH 中调用本地 clipboard

8 天前
 GopherDaily

我日常使用 MacbookPro, 但有一半的开发工作通过 SSH 在 Linux/amd64 的环境下完成. 考虑到我基本使用 vim 做为编辑器, 上述方案的唯一痛点在于两台机器无法共享剪贴盘.

昨天乘着配置新环境的机会, 搜索了一下解决方案, 选择了 OSC 52.

OSC 是 Operating System Command 的缩写, 其约定了一系列特殊符号的含义. OSC 52 是其一个子类, 用于控制系统剪贴板. 我们引用 tmux 的文档来总结其原理:

Some terminals offer an escape sequence to set the clipboard. This is one of the operating system control sequences so it is known as OSC 52.

The way it works is that when text is copied in tmux it is packaged up and sent to the outside terminal in a similar way to how tmux draws the text and colours and attributes. The outside terminal recognises the clipboard escape sequence and sets the system clipboard.

当前大部分的终端都已经支持了这项功能, 当你在终端执行 echo -en "\e]52;c;$(base64 <<< OSC)\a" 后再黏贴可以看到 OSC 这三个字符串.

OSC 52 在 tmux 中的定义是 \033]52;%p1%s;%p2%s\a, 其中各项的含义是:

我在 iterm2 中使用 tmux, 参考 tmux 的官方文档, 可以知道关键的几项设置:

  1. iterm2 需要允许内部应用访问系统剪贴板, Link
  2. tmux 配置 TERM, 检查方式为 tmux info | grep Ms, 设置方式为 set-option -as terminal-overrides ",xterm-256color:clipboard"
  3. tmux 配置 set-clipboard, 设置访问是 set -g set-clipboard on
  4. 通过 tmux source-file 更新配置

需要额外谈的是 set-clipboard, 文档推荐的设置是 external, 但我选择的是 on. 二者的区别在于 on 允许 tmux 和 tmux 内的应用设置剪贴板, external 仅允许 tmux 设置剪贴板. 所以当我通过 ssh 访问开发机并希望在开发机内访问本机的剪贴板时需要将 set-clipboard 设置为 on.

最后通过 remote-pbcopy-iterm2 将 OSC 52 的逻辑封装成了命令 pbcopy.

242 次点击
所在节点    SSH
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1087392

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX