我启用了外部剪贴板选项:
$ tmux show-options -g -s set-clipboard
set-clipboard external
我在 SSH 中使用带有 tmux 的 Kitty 终端。
当我用鼠标突出显示文本或使用 时<C-B>[
,内容会很好地复制到我的系统剪贴板,并且我可以使用 将其粘贴回 tmux 中<C-B>]
。但是,当我按如下方式进行管道传输时:
$ echo -n "Hello World" | tmux loadb -
内容是正确的<C-B>]
,即当我在 tmux 中粘贴时,但我的系统剪贴板没有更新。我不明白为什么会这样,难道不应该是相同的行为吗?