aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_cancel_commandline.fish
blob: e48d32ad8a4a98e49bf85bafc467c523cf9bf48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This is meant to be bound to something like \cC.
function __fish_cancel_commandline
    set -l cmd (commandline)
    if test -n "$cmd"
        commandline -C 1000000
        # TODO: Switch from using tput and standout mode to `set_color` when themes have been
        # augmented to include support for background colors or has support for standout/reverse
        # mode.
        #
        # Set reverse fg/bg color mode, output ^C, restore normal mode, clear to EOL (to erase any
        # autosuggestion).
        echo -n (tput smso)"^C"(tput rmso)(tput el)
        for i in (seq (commandline -L))
            echo ""
        end
        commandline ""
        commandline -f repaint
    end
end