Commit d9ac785a authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

input: handle the implant() function separately also for the prompt

To prevent getting kicked out of it.

This fixes https://savannah.gnu.org/bugs/?53234.
No related merge requests found
Showing with 4 additions and 0 deletions
+4 -0
...@@ -152,6 +152,10 @@ int do_statusbar_input(bool *finished) ...@@ -152,6 +152,10 @@ int do_statusbar_input(bool *finished)
shortcut->func == do_delete || shortcut->func == do_delete ||
shortcut->func == do_backspace)) shortcut->func == do_backspace))
; ;
#ifdef ENABLE_NANORC
else if (shortcut->func == implant)
execute(shortcut);
#endif
else if (shortcut->func == do_verbatim_input) else if (shortcut->func == do_verbatim_input)
do_statusbar_verbatim_input(); do_statusbar_verbatim_input();
else if (shortcut->func == do_cut_text_void) else if (shortcut->func == do_cut_text_void)
......
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