aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-07-13 23:20:36 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-07-13 23:20:36 +0200
commit33341730705889167c7b5feac669add7e5280972 (patch)
tree65b8065688e8fb788fe4d9a9df29eef175d2e1cd
parentaa87b637f2bb00187b9bcdacfe3a6bd3c20834c8 (diff)
downloaddotfiles-33341730705889167c7b5feac669add7e5280972.tar.xz
zsh: Add custom completions
-rw-r--r--zsh/.zshrc2
-rw-r--r--zsh/completion/_5c4
-rw-r--r--zsh/completion/_5v4
-rw-r--r--zsh/completion/_aur4
4 files changed, 14 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index d61bafb..2e628c8 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -9,6 +9,8 @@ zstyle ':completion:*' menu select
zstyle ':completion:*' use-cache on
zstyle ':completion:*' rehash yes
+fpath=("$ZDOTDIR"/completion "${fpath[@]}")
+
autoload -Uz colors \
compinit \
promptinit \
diff --git a/zsh/completion/_5c b/zsh/completion/_5c
new file mode 100644
index 0000000..ca7eeac
--- /dev/null
+++ b/zsh/completion/_5c
@@ -0,0 +1,4 @@
+#compdef 5c
+
+_arguments \
+ "1: :($(print $HOME/5/code/*(/) | xargs -n1 basename))"
diff --git a/zsh/completion/_5v b/zsh/completion/_5v
new file mode 100644
index 0000000..3958269
--- /dev/null
+++ b/zsh/completion/_5v
@@ -0,0 +1,4 @@
+#compdef 5v
+
+_arguments \
+ "1: :($(print $HOME/5/venvs/*(/) | xargs -n1 basename))"
diff --git a/zsh/completion/_aur b/zsh/completion/_aur
new file mode 100644
index 0000000..83a359c
--- /dev/null
+++ b/zsh/completion/_aur
@@ -0,0 +1,4 @@
+#compdef aur-push aur-pull
+
+_arguments \
+ "1: :($(git for-each-ref --format='%(refname:short)' refs/heads))"