Created
November 12, 2014 20:33
-
-
Save mapyo/4b01943082bba8248b9c to your computer and use it in GitHub Desktop.
tmuxでmacのクリップボードと連携する ref: http://qiita.com/mapyo/items/cc4a7077f19774018bbb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# コピー、選択モードのキーバインドvi風にする | |
set-window-option -g mode-keys vi | |
# クリップボードをmacと連携 | |
# http://qiita.com/upinetree/items/cd80bc7865c52091be10 | |
unbind -t vi-copy Enter | |
bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install reattach-to-user-namespace |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment