summaryrefslogtreecommitdiff
path: root/.config/fish/functions/_fzf_report_file_type.fish
blob: 49e02e1ca3311dbc345fa4b7d137bdd3d51f2195 (plain)
1
2
3
4
5
6
# helper function for _fzf_preview_file
function _fzf_report_file_type --argument-names file_path file_type --description "Explain the file type for a file."
    set_color red
    echo "Cannot preview '$file_path': it is a $file_type."
    set_color normal
end