fish-shell/share/functions/__fish_cancel_commandline.fish
Johannes Altmanninger 5de6f4bb3d Provide old implementation of cancel-commandline as fallback
__fish_cancel_commandline was unused (even before) and has some issues
on multiline commandlines. Make it use the previously active logic.

Closes #10935
2024-12-23 14:34:59 +01:00

4 lines
142 B
Fish

# This is meant to be bound to something like ctrl-c
function __fish_cancel_commandline
commandline -f cancel-commandline-traditional
end