tmux で emacs コピー モードを使用して、ファイルの内容全体をコピーしたいと考えています。
ただし、コピー モードに入ると、C-space と入力してテキストの強調表示を開始し、次に M-> と入力してファイルの末尾にジャンプすると、tmux ペインの下部にあるファイル情報セクションにジャンプするだけになります。
これが何が起こるかを示す写真です:
編集: 私は新しいユーザーで、まだ写真を投稿できないようです。ただし、基本的には、tmux コピー モードで黄色に強調表示された (選択された) テキストを想像できます。ファイルの末尾ではなく、ペインの下部のみを強調表示できます (これは次のようになります)。
-u-:----F1 file_name.rb Top L1 (Ruby)---------------------------------
私の質問は、どうすればコピー モードに入り、テキストの選択を開始し、ファイルの最後にジャンプできるかということです。
これが私の目標 (tmux でファイルの内容全体をコピーする) を達成するための最良の方法ではない場合、それを行うためのより良い方法は何ですか?
どうも!
ps
ここの指示に従いました: https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard
また、実用的なtmuxの本からの指示。
それが役立つ場合は、ここに私の.tmux.confファイルからの関連行があります(これは主に実用的なtmuxブックからコピーされました):
# use pbcopy|pbpaste wrapper script
set-option -g default-command "reattach-to-user-namespace -l zsh"
# send contents of current tmux buffer to system clipboard
bind C-c run "tmux save-buffer - | reattach-to-user-namespace pbcopy"
# support pasting from the system clipboard
bind C-v run "tmux set-buffer $(reattach-to-user-namespace pbpaste); tmux paste buffer"
# overriding "auto-detection" to always use emacs
set-option -g status-keys emacs
set-option -gw mode-keys emacs