mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
5de6f4bb3d
__fish_cancel_commandline was unused (even before) and has some issues on multiline commandlines. Make it use the previously active logic. Closes #10935
4 lines
142 B
Fish
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
|