command-not-found.plugin.zsh 1.37 KB
Newer Older
1
# Uses the command-not-found package zsh support
Janosch Schwalm's avatar
Janosch Schwalm committed
2
# as seen in https://www.porcheron.info/command-not-found-for-zsh/
3
4
# this is installed in Ubuntu

5
[[ -e /etc/zsh_command_not_found ]] && source /etc/zsh_command_not_found
6
7
8
9

# Arch Linux command-not-found support, you must have package pkgfile installed
# https://wiki.archlinux.org/index.php/Pkgfile#.22Command_not_found.22_hook
[[ -e /usr/share/doc/pkgfile/command-not-found.zsh ]] && source /usr/share/doc/pkgfile/command-not-found.zsh
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

# Fedora command-not-found support
if [ -f /usr/libexec/pk-command-not-found ]; then
    command_not_found_handler () {
        runcnf=1
        retval=127
        [ ! -S /var/run/dbus/system_bus_socket ] && runcnf=0
        [ ! -x /usr/libexec/packagekitd ] && runcnf=0
        if [ $runcnf -eq 1 ]
            then
            /usr/libexec/pk-command-not-found $@
            retval=$?
        fi
        return $retval
    }
fi
26
27
28

# OSX command-not-found support
# https://github.com/Homebrew/homebrew-command-not-found
29
30
if [[ -s '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-command-not-found/handler.sh' ]]; then
    source '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-command-not-found/handler.sh'
31
fi
32
33
34
35
36
37
38

# NixOS command-not-found support
if [ -x /run/current-system/sw/bin/command-not-found ]; then
    command_not_found_handler () {
        /run/current-system/sw/bin/command-not-found $@
    }
fi