mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 14:51:13 -03:00
Pressing Ctrl-D while a command is running results in a null key code in our input queue. That key code is bound to insert a space (without expanding abbreviations). Make it only insert a space if the commandline is non-empty, to accommodate this use case. This probably affects other keys as well. Closes #8871