LoginSignup
2
1

More than 3 years have passed since last update.

tmux と Mac のクリップボードの双方向コピペ

Last updated at Posted at 2020-07-28

要件

  • コピーモードで emacs キーバインドである
  • tmux でコピーして GUI アプリ(ブラウザや GUI emacs) へペーストできる
  • GUI アプリ(ブラウザや GUI emacs)でコピーして tmux にペーストできる

環境

  • tmux v3.0α

設定

set -g mode-keys emacs
bind-key -T copy-mode C-w send-keys -X copy-pipe-and-cancel "pbcopy"
bind-key C-y paste-buffer
bind C-m run "pbpaste | tmux load-buffer - && tmux paste-buffer"

課題

  • 2種類のペーストを交互に実行すると片方が上書きされる

資料

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1