https://saltiga.hatenablog.com/entry/2020/02/14/235139
Ich möchte die Ausgabe von cat so kopieren, wie sie ist! !!
Installieren Sie tmux
↓
Erstellen Sie die folgende Datei
{~/.tmux.conf}
set-option -g default-command "exec reattach-to-user-namespace -l $SHELL"
setw -g mode-keys vi
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
↓
Drücken Sie Strg + b + [, um den Kopiermodus aufzurufen.
Bewegen Sie den Cursor wie vim und ziehen Sie mit y.
Recommended Posts