OS Xのクリップボードとtmuxのクリップボード *1 を共通にする設定に関するメモです. なお,tmuxのバージョンは1.9a,reattach-to-user-namespaceのバージョンは2.3です. 1. まずreattach-to-user-namespace入れる $ brew install reattach-to-user-namespace簡単. 2. 設定ファイルを書く .tmux.confに設定を書く. if-shell 'test "$(uname -s)" = Darwin && which reattach-to-user-namespace > /dev/null 2>&1' 'source-file ~/.tmux-reattach-to-user-namespace.conf' if-shell使うと,第一引数がtrueの時だけ第二引数を実行してくれて