Skip to content

Instantly share code, notes, and snippets.

@mapyo
Created November 12, 2014 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mapyo/4b01943082bba8248b9c to your computer and use it in GitHub Desktop.
Save mapyo/4b01943082bba8248b9c to your computer and use it in GitHub Desktop.
tmuxでmacのクリップボードと連携する ref: http://qiita.com/mapyo/items/cc4a7077f19774018bbb
# コピー、選択モードのキーバインド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"
$ brew install reattach-to-user-namespace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment