.screenrc
changeset 467 6f8820ca7f1c
parent 207 db705bb4344e
child 472 75161fbbc814
equal deleted inserted replaced
466:4c5042015cd7 467:6f8820ca7f1c
     5 escape ``
     5 escape ``
     6 
     6 
     7 term xterm-256color
     7 term xterm-256color
     8 
     8 
     9 shell bash
     9 shell bash
       
    10 
       
    11 # Autodetach session on hangup instead of terminating screen completely.
       
    12 autodetach on
    10 
    13 
    11 # If a window goes unresponsive, don't block the whole session waiting for it.
    14 # If a window goes unresponsive, don't block the whole session waiting for it.
    12 nonblock on
    15 nonblock on
    13 
    16 
    14 # Window numbering starts at 1, not 0.
    17 # Window numbering starts at 1, not 0.
    18 # Define a bigger scrollback, default is 100 lines.
    21 # Define a bigger scrollback, default is 100 lines.
    19 defscrollback 10000
    22 defscrollback 10000
    20 
    23 
    21 vbell on
    24 vbell on
    22 
    25 
       
    26 # Tell screen to ignore the case of characters in searches.
       
    27 ignorecase on
       
    28 
       
    29 # No flow control, e.g. ^S and ^Q.
       
    30 defflow off
       
    31 
    23 # Ctrl+Tab and Ctrl+Shift+Tab to switch session in GNU Screen.
    32 # Ctrl+Tab and Ctrl+Shift+Tab to switch session in GNU Screen.
    24 bindkey "^[[1;5I" next
    33 bindkey "^[[1;5I" next
    25 bindkey "^[[1;6I" prev
    34 bindkey "^[[1;6I" prev
    26