Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
f997ed7e
Commit
f997ed7e
authored
Jan 10, 2015
by
Andrey Sitnik
Browse files
Add Fedora support for command-not-found plugin
parent
c78277fd
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/command-not-found/command-not-found.plugin.zsh
View file @
f997ed7e
...
...
@@ -7,3 +7,19 @@
# 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
# 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment