summaryrefslogtreecommitdiff
path: root/shell-completion/zsh
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-06-07 03:42:28 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-07 03:42:28 -0400
commitab543cb05387d60a23f9d7672a9338cf03bddf55 (patch)
tree2eac9cecf19b4a07e4805d41a492554c21ce8e3c /shell-completion/zsh
parentacd190019d99fe25abf4515ca1834eb277161833 (diff)
./move.sh
Diffstat (limited to 'shell-completion/zsh')
l---------shell-completion/zsh/Makefile1
-rw-r--r--shell-completion/zsh/_kernel-install26
2 files changed, 0 insertions, 27 deletions
diff --git a/shell-completion/zsh/Makefile b/shell-completion/zsh/Makefile
deleted file mode 120000
index d0b0e8e008..0000000000
--- a/shell-completion/zsh/Makefile
+++ /dev/null
@@ -1 +0,0 @@
-../Makefile \ No newline at end of file
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