summaryrefslogtreecommitdiff
path: root/shell-completion/zsh/_kernel-install
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-05-12 23:58:59 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-05-12 23:58:59 -0400
commitf838f51c238f8dcc4568eb68a16a7a86024eea5d (patch)
treef122167057382ce448e3101091225ba6647592da /shell-completion/zsh/_kernel-install
parent39970d85d4c2313d43147f15047ac564603c7f8c (diff)
./tools/notsd-move
Diffstat (limited to 'shell-completion/zsh/_kernel-install')
-rw-r--r--shell-completion/zsh/_kernel-install26
1 files changed, 0 insertions, 26 deletions
diff --git a/shell-completion/zsh/_kernel-install b/shell-completion/zsh/_kernel-install
deleted file mode 100644
index 4fdd3a4ae7..0000000000
--- a/shell-completion/zsh/_kernel-install
+++ /dev/null
@@ -1,26 +0,0 @@
-#compdef kernel-install
-
-_images(){
- if [[ "$words[2]" == "remove" ]]; then
- _message 'No more options'
- else
- _path_files -W /boot/ -P /boot/ -g "vmlinuz-*"
- fi
-}
-
-_kernels(){
- read _MACHINE_ID < /etc/machine-id
- _kernel=( /lib/modules/[0-9]* )
- if [[ "$cmd" == "remove" && -n "$_MACHINE_ID" ]]; then
- _kernel=( "/boot/$_MACHINE_ID"/[0-9]* )
- fi
- _kernel=( ${_kernel##*/} )
- _describe "installed kernels" _kernel
-}
-
-_arguments \
- '1::add or remove:(add remove)' \
- '2::kernel versions:_kernels' \
- '3::kernel images:_images'
-
-#vim: set ft=zsh sw=4 ts=4 et