view dot_config/private_fish/functions/fzf_last_command_output.fish @ 1072:240d435b7443

feat: remove "current" keyword from stack state when the change is orphaned
author Zeger Van de Vannet <zeger@vandevan.net>
date Mon, 10 Feb 2025 17:55:14 +0100
parents 6ab26ddbf78d
children
line wrap: on
line source

function fzf_last_command_output
    set cmd (history | fzf --header "Choose the command to rerun.")
    if test -n "$cmd"
        set result (eval $cmd | fzf -m --header "Choose the line(s) from the repeated command\'s output to paste into the current command-line. (The order matters!)")
        if test -n "$result"
            commandline -i (string join " " -- $result "") # adds a space after the inserted line output
        end
    end
    commandline -f repaint
end