We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21cd196 commit 0ff68a9Copy full SHA for 0ff68a9
src/Edit/Interface/edit_complete.cpp
@@ -191,8 +191,10 @@ edit_interface_rep::complete_keypress (string key) {
191
}
192
else if ((key != "tab") && (key != "S-tab") && (key != "up") &&
193
(key != "down")) {
194
- // set_input_normal ();
195
- // SERVER (set_completion_listbox_visible (false));
+ if ((key != "backspace" && try_shortcut(key))) {
+ set_input_normal ();
196
+ SERVER (set_completion_listbox_visible (false));
197
+ }
198
return false;
199
200
tree st= subtree (et, path_up (tp));
0 commit comments