commit 06606b659bfc426682ce9e898fd65b1b4a9b953b
Author: Scott Kostyshak <[email protected]>
Date: Thu May 16 13:58:18 2019 -0400
Tab binding: outline-in before depth-increment
Same for BackTab. The outline-in was originally (31398779)
introduced to the command-sequence at the end. Probably it was
placed at the end to be conservative (i.e., so that it would only
change behavior where there was a no-op before).
This fixes #11576.
(cherry picked from commit 9ab9f2b1acb8bc1a40d5a69737b43d09b7f7a597)
---
lib/bind/site.bind | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/bind/site.bind b/lib/bind/site.bind
index 82a8de1..af7f658 100644
--- a/lib/bind/site.bind
+++ b/lib/bind/site.bind
@@ -27,10 +27,10 @@ Format 4
\bind "Up" "up"
\bind "Down" "down"
-\bind "Tab" "command-alternatives
completion-accept;cell-forward;tab-insert;depth-increment;outline-in"
+\bind "Tab" "command-alternatives
completion-accept;cell-forward;tab-insert;outline-in;depth-increment"
\bind "C-Tab" "cell-split"
\bind "~S-ISO_Left_Tab" "cell-backward"
-\bind "~S-BackTab" "command-alternatives
cell-backward;tab-delete;depth-decrement;outline-out"
+\bind "~S-BackTab" "command-alternatives
cell-backward;tab-delete;outline-out;depth-decrement"
\bind "Home" "line-begin"
\bind "End" "line-end"