Skip to content

Instantly share code, notes, and snippets.

@aphlysia
Last active August 29, 2015 14:11
Show Gist options
  • Save aphlysia/884e97a844deeb563100 to your computer and use it in GitHub Desktop.
Save aphlysia/884e97a844deeb563100 to your computer and use it in GitHub Desktop.

これは stfuawsc_itg Advent Calendar 2014 16日目の記事です。ですたい。

.screenrc をさらす

今年は縦分割対応の screen がついにリリースされましたね。他にもレイアウトやウィンドウグループなど盛り沢山です。http://yskwkzhr.blogspot.jp/2014/04/gnu-screen-v-4.2-has-released.html http://yskwkzhr.blogspot.jp/2011/01/gnu-screen.html
てなわけで .screenrc をさらしてみます。

escape ^Tt
termcap xterm hs@
terminfo xterm hs@
defscrollback 100000
startup_message off
bind h focus left
bind j focus down
bind k focus up
bind l focus right
bind n layout new
bind \t layout next
bind ^c layout remove
bind ^l redisplay

ウィンドウの移動は vi ライクにしています。
レイアウトの操作は n で作って、タブで切り替えて、^c で消す。その3つの操作しかしてません。うそつきました。たまにわからなくなって :layout show します。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment