|
98 | 98 | # Xterm
|
99 | 99 | "\x1b[1;2P": (Keys.F13,),
|
100 | 100 | "\x1b[1;2Q": (Keys.F14,),
|
101 |
| - # '\x1b[1;2R': Keys.F15, # Conflicts with CPR response. |
| 101 | + "\x1b[1;2R": ( |
| 102 | + Keys.F15, |
| 103 | + ), # Conflicts with CPR response; enabled after https://github.com/Textualize/textual/issues/3440. |
102 | 104 | "\x1b[1;2S": (Keys.F16,),
|
103 | 105 | "\x1b[15;2~": (Keys.F17,),
|
104 | 106 | "\x1b[17;2~": (Keys.F18,),
|
|
112 | 114 | # Control + function keys.
|
113 | 115 | "\x1b[1;5P": (Keys.ControlF1,),
|
114 | 116 | "\x1b[1;5Q": (Keys.ControlF2,),
|
115 |
| - # "\x1b[1;5R": Keys.ControlF3, # Conflicts with CPR response. |
| 117 | + "\x1b[1;5R": ( |
| 118 | + Keys.ControlF3, |
| 119 | + ), # Conflicts with CPR response; enabled after https://github.com/Textualize/textual/issues/3440. |
116 | 120 | "\x1b[1;5S": (Keys.ControlF4,),
|
117 | 121 | "\x1b[15;5~": (Keys.ControlF5,),
|
118 | 122 | "\x1b[17;5~": (Keys.ControlF6,),
|
|
124 | 128 | "\x1b[24;5~": (Keys.ControlF12,),
|
125 | 129 | "\x1b[1;6P": (Keys.ControlF13,),
|
126 | 130 | "\x1b[1;6Q": (Keys.ControlF14,),
|
127 |
| - # "\x1b[1;6R": Keys.ControlF15, # Conflicts with CPR response. |
| 131 | + "\x1b[1;6R": ( |
| 132 | + Keys.ControlF15, |
| 133 | + ), # Conflicts with CPR response; enabled after https://github.com/Textualize/textual/issues/3440. |
128 | 134 | "\x1b[1;6S": (Keys.ControlF16,),
|
129 | 135 | "\x1b[15;6~": (Keys.ControlF17,),
|
130 | 136 | "\x1b[17;6~": (Keys.ControlF18,),
|
|
0 commit comments