Add support for ctrl+tab to the default keyboard translation

This escape matches what e. g. vim and screen recognizes, and seems to
be fairly standard.

NB: By default ctrl+tab is mapped to changing tabs in Konsole, so you
need to reset that in the shortcut settings for this to have any impact.
This commit is contained in:
Martin T. H. Sandsmark
2020-11-20 15:53:04 +01:00
committed by Kurt Hindenburg
parent 3711e884c9
commit b2ce2db26a

View File

@@ -28,6 +28,11 @@ key Tab +Shift-Ansi : "\t"
key Backtab +Ansi : "\E[Z"
key Backtab -Ansi : "\t"
key Tab +Control+Ansi : "\E[27;5;9~"
key Backtab +Control+Ansi : "\E[27;6;9~"
key Tab +Control-Ansi : "\t"
key Backtab +Control-Ansi : "\t"
key Return-Shift-NewLine : "\r"
key Return-Shift+NewLine : "\r\n"