screen

OSX + iTerm + screen + vim + 256 colors

This Page Has Movedscreen (Git!!!!) % git clone git://git.savannah.gnu.org/screen.git % cd screen/src % ./autogen.sh % ./configure --prefix=/usr/local \ --enable-telnet \ --enable-pam \ --enable-colors256 \ --enable-rxvt_osc \ --enable-use…

term != "screen"

screenでvimがこける。 % echo $TERM xterm-color % screen % echo $TERM vt100 % vi E437: terminal capability "cm" required Press ENTER or type command to continueなので ~/.screenrc term ansi ~/.vimrc " if &term =~ "screen" if &term !~ "xterm-…

.screenrc

escape ^w^w # コマンドキーとリテラルキーは "Ctl + w" startup_message off # 起動メッセージをオフ vbell off # visulal bellオフ deflogin on # ログインを抑制 autodetach on # 自動的にデタッチ defflow off # フロー制御しない # ウィンドウの文字コ…

へたれな使い方

とりあえず、prefixキーは、C-t ./screenrc escape ^t^t 画面の扱い 新しい仮想画面の生成 ^T c 仮想画面の切替(昇順) ^T [SPACE] 仮想画面の切替(降順) ^T p 仮想画面リストの表示 ^T w 仮想画面への直接移動 ^T [画面番号] 仮想画面の名前の変更 ^T A 仮想…