# HG changeset patch # User Oleksandr Gavenko # Date 1340831460 -10800 # Node ID 6f8820ca7f1ca9ad7b75936149427ff070318003 # Parent 4c5042015cd7e24ed17e8a0ad311998d74e6f180 Tell screen to ignore the case of characters in searches. No flow control, e.g. ^S and ^Q. diff -r 4c5042015cd7 -r 6f8820ca7f1c .screenrc --- a/.screenrc Wed Jun 27 23:25:31 2012 +0300 +++ b/.screenrc Thu Jun 28 00:11:00 2012 +0300 @@ -8,6 +8,9 @@ shell bash +# Autodetach session on hangup instead of terminating screen completely. +autodetach on + # If a window goes unresponsive, don't block the whole session waiting for it. nonblock on @@ -20,7 +23,12 @@ vbell on +# Tell screen to ignore the case of characters in searches. +ignorecase on + +# No flow control, e.g. ^S and ^Q. +defflow off + # Ctrl+Tab and Ctrl+Shift+Tab to switch session in GNU Screen. bindkey "^[[1;5I" next bindkey "^[[1;6I" prev -