Browse code

screenrc - v1.7 - Update due to inputrc conflict

Fred authored on18/07/2016 23:30:13
Showing1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 # Title: .screenrc
2 2
 # Author: Frédéric CHEVALIER <f15.chevalier@gmail.com>
3
-# Version: 1.6
3
+# Version: 1.7
4 4
 # Created in: 2014-08-11
5
-# Modified in: 2015-08-17
5
+# Modified in: 2016-07-18
6 6
 
7 7
 
8 8
 
... ...
@@ -10,6 +10,7 @@
10 10
 # Versions #
11 11
 #==========#
12 12
 
13
+# v1.7 - 2016-07-18: ctrl-up and ctrl-down binding removed due to conflict with .inputrc
13 14
 # v1.6 - 2015-08-17: session name added to caption bar
14 15
 # v1.5 - 2015-05-27: modification of caption bar because of bad support of accentuated characters
15 16
 # v1.4 - 2015-03-01: scrollback value increased / date field modified in hardstatus due to size problem in month short name between French and English
... ...
@@ -21,16 +22,16 @@
21 22
 
22 23
 
23 24
 #==================#
24
-# General Settings #
25
+# General settings #
25 26
 #==================#
26 27
 
27 28
 # Startup message
28 29
 startup_message off
29 30
 
30
-# use login shell
31
+# Use login shell
31 32
 shell -${SHELL}
32 33
 
33
-# utf-8
34
+# UTF-8
34 35
 defutf8 on
35 36
 
36 37
 # Terminal to use
... ...
@@ -76,8 +77,8 @@ bindkey "^[[20~" resize -1  # F9 decrease region size
76 77
 bindkey "^[[21~" resize +1  # F10 increase region size
77 78
 bindkey "^[[23~" resize =   # F11 equalize region size
78 79
 
79
-bindkey "^[[1;5A" focus up      # Ctrl-up: move between regions
80
-bindkey "^[[1;5B" focus down    # Ctrl-down: move between regions
80
+#bindkey "^[[1;5A" focus up      # Ctrl-up: move between regions
81
+#bindkey "^[[1;5B" focus down    # Ctrl-down: move between regions
81 82
 
82 83
 bindkey -k k1 focus top     # F1: move to the top region
83 84
 bindkey -k k2 focus bottom  # F2: move to the bottom region
... ...
@@ -91,8 +92,8 @@ bindkey -k F2 title         # F12: rename window
91 92
 
92 93
 bindkey "^[[6;5~" next      # Ctrl-pgup: move to the next window
93 94
 bindkey "^[[5;5~" prev      # Ctrl-pgdown: move to the previous window
94
-bind p next     # C-x (x)  p: move to the next window
95
-bind o prev     # C-x (x) o: move to the previous window
95
+bind p next                 # Ctrl-x (x) p: move to the next window
96
+bind o prev                 # Ctrl-x (x) o: move to the previous window
96 97
 
97 98
 bindkey "^[[6;3~" number +1 # Alt-pgup: move tab up (increase tab number)
98 99
 bindkey "^[[5;3~" number -1 # Alt-pgdown: move tab down (decrease tab number)