aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_cancel_commandline.fish
blob: 5117e738a98996462f54664a21cd7594cf42211e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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
        echo -n (set_color -b bryellow black)"^C"(set_color normal)
        for i in (seq (commandline -L))
            echo ""
        end
        commandline ""
        commandline -f repaint
    end
end