Re-enable exit keybinding in /etc/grml/screenrc
authorMichael Prokop <mika@grml.org>
Tue, 27 Jan 2009 20:58:25 +0000 (21:58 +0100)
committerMichael Prokop <mika@grml.org>
Tue, 27 Jan 2009 20:58:25 +0000 (21:58 +0100)
debian/changelog
etc/grml/screenrc

index 6131692..c5f384f 100644 (file)
@@ -1,11 +1,14 @@
 grml-etc-core (0.3.62) unstable; urgency=low
 
   * /etc/skel/.vimrc:
-    * disable digraph by default (it's annoying for users not
+    - disable digraph by default (it's annoying for users not
       being aware of it)
-    * enable syntax highlighting only if the vim version supports it
+    - enable syntax highlighting only if the vim version supports it
+  * /etc/grml/screenrc:
+    - re-enable keybindings '^\' and '\\' for exiting screen with query
+      (thanks, gebi)
 
- -- Michael Prokop <mika@grml.org>  Wed, 21 Jan 2009 14:52:14 +0100
+ -- Michael Prokop <mika@grml.org>  Tue, 27 Jan 2009 21:57:00 +0100
 
 grml-etc-core (0.3.61) unstable; urgency=low
 
index 48f94d6..29ee723 100644 (file)
@@ -3,7 +3,6 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: YDATE [mika]
 ################################################################################
 
   backtick 1 0 60   /usr/bin/cpu-screen
 # them to "nothing" (empty right-hand-side):
 # bind .  dumptermcap # default
   bind .
-  bind ^\
-  bind \\
+# bind ^\
+# bind \\
+  bind .
+  bind k
+  bind ^k
+  bind ^h
 
 # 040126 To be able to select windows with n > 9 ->
 # press "C-a - #" instead of just "C-a #"
 #  bindkey -k F1 prev
 #  bindkey -k F2 next
 
-# remove some stupid / dangerous key bindings
-  bind k
-  bind ^k
-  bind .
-  bind ^\
-  bind \\
-  bind ^h
   bind h  hardcopy
 # make them better
   bind 'K' kill
 
 # Welcome the user:
   echo "welcome BoFH!"
+
+## END OF FILE #################################################################