Chinaunix首页 | 论坛 | 博客
  • 博客访问: 440073
  • 博文数量: 132
  • 博客积分: 2511
  • 博客等级: 大尉
  • 技术积分: 1385
  • 用 户 组: 普通用户
  • 注册时间: 2006-04-11 15:10
文章分类

全部博文(132)

文章存档

2012年(18)

2011年(35)

2010年(60)

2009年(19)

分类: LINUX

2010-11-27 14:10:44

screen确实是个非常好用的会话管理工具,尤其是进行合理的配置之后,从zhixu那儿把他的配置文件拿过来用了,最好用的功能就是在底部显示所有的窗口名功能。
他里面开始用的窗口切换的快捷键是ctrl-left,ctrl-right,很方便,但右手要离开主键区,可能多少有点不方便,自己在网上搜了一下,改成了另外的方式,Alt+,/Alt+.

#bindkey "\033[1;5D" prev  # change window with ctrl-left
#bindkey "\033[1;5C" next  # change window with ctrl-right

bindkey "^[," prev       # change window to prev with Alt-,
bindkey "^[." next       # change window to next with Alt-.
bindkey "^[`" select 0
bindkey "^[1" select 1
bindkey "^[2" select 2
bindkey "^[3" select 3
bindkey "^[4" select 4
bindkey "^[5" select 5
bindkey "^[6" select 6
bindkey "^[7" select 7
bindkey "^[8" select 8
bindkey "^[9" select 9
bindkey "^[0" select 10
bindkey "^[-" select 11
bindkey "^[=" select 12


#sorendition +b kG
#caption always "%{= kb}[ %=%{w}%?%-Lw%?%{b}(%{W}%n*%f %t%?(%u)%?%{b})%{w}%?%+Lw%?%?%= %{b}][%{B} %H %{W}%l %{b}][%{B} %d.%m.%Y %{W}%0c %{b}]"
#caption always '%c:%s %3n - %t'
#displays

hardstatus on
hardstatus alwayslastline
#hardstatus string "%{=kw}%{g}[ %{G}%H %{g}] %{w}%1` %{g}[%=%{=kw}%{w}%-w%{Y}[%{W}%n-%t%{Y}]%{w}%+w%=%{g}][%l][ %{w}%Y-%m-%d %{Y}%c:%s %{g}]"
hardstatus string "%{= br}%{g}[%{G}$USER @ %H%{g}]%{w}%1`%{g}[%=%{=kw}%{w}%-w%{Y}[%{W}%n-%t%{Y}]%{w}%+w%=%{g}][%l][%{w}%Y-%m-%d %{Y}%c%{+B}:%{-}%s%{g}]"

term xterm

altscreen on

阅读(1040) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

bedreaming2011-03-30 10:15:47

zz from:http://www.osolution.com.cn/Technology_detail.asp?Id=1678

在screen中必须进入copy mode才能屏幕回滚,进入copy mode的命令,下面任何一个:

    * ctrl-a [
    * ctrl-a ctrl-[
    * ctrl-a esc

进入copy mode后坐下角会有提示,退出copy mode用esc键,或者敲几次enter

在copy mode里移动光标的按键跟vi中一致,(vi的用户太有福了)

    * h - 左移动一个字符
&nb