Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
f997ed7e
Commit
f997ed7e
authored
Jan 10, 2015
by
Andrey Sitnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Fedora support for command-not-found plugin
parent
c78277fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
command-not-found.plugin.zsh
plugins/command-not-found/command-not-found.plugin.zsh
+16
-0
No files found.
plugins/command-not-found/command-not-found.plugin.zsh
View file @
f997ed7e
...
@@ -7,3 +7,19 @@
...
@@ -7,3 +7,19 @@
# Arch Linux command-not-found support, you must have package pkgfile installed
# Arch Linux command-not-found support, you must have package pkgfile installed
# https://wiki.archlinux.org/index.php/Pkgfile#.22Command_not_found.22_hook
# 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
[[
-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