Commit 8e328e43 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

input: make <Shift+Tab> do an unindent also on a Manjaro console

This fixes https://savannah.gnu.org/bugs/?52943.
No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
......@@ -388,6 +388,8 @@ int parse_kbinput(WINDOW *win)
case 1:
if (keycode >= 0x80)
retval = keycode;
else if (keycode == TAB_CODE)
retval = SHIFT_TAB;
else if ((keycode != 'O' && keycode != 'o' && keycode != '[') ||
key_buffer_len == 0 || *key_buffer == ESC_CODE) {
/* One escape followed by a single non-escape:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment