Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

tmux のアウトプットを適当なエディタで開く

$
0
0

image

デフォルトでも tmux のアウトプットは c-b [で遡ったりできるが、通常のエディタで開きたかった。

幸運にも、 tmux には capture-paneというナイスなコマンドがある。

$HOME/bin/vim-edit-tmux-output

#!/bin/bashfile=`mktemp`.sh
tmux capture-pane -pS-32768>$file
tmux new-window -n:mywindow "vim $file"

chmod +x $HOME/bin/vim-edit-tmux-output

$HOME/.tmux.conf

setenv -g PATH "$HOME/bin:$PATH"

bind-key C-e run-shell "vim-edit-tmux-output"

あとは C-b C-eを押せば良い。

嬉しいのは、 tmux は 自動的に Vim が終了した後のペインを消してくれるところだ。


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>