summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
authorfutjikato <m.spindelhirn@cashiers-check.de>2013-10-05 00:56:17 +0200
committerfutjikato <m.spindelhirn@cashiers-check.de>2013-10-05 00:56:17 +0200
commit9afb139d20f12f93c086140db3e9bfd4913f15a0 (patch)
tree9bae93d20f665854b6ddb4a0cf0b727147eb8ad6 /custom
parent33b1a3bcfed1d52d48a3a467f81da1599d2fa883 (diff)
downloadzsh-9afb139d20f12f93c086140db3e9bfd4913f15a0.tar.gz
zsh-9afb139d20f12f93c086140db3e9bfd4913f15a0.tar.bz2
zsh-9afb139d20f12f93c086140db3e9bfd4913f15a0.zip
Updated completion to work with comma seperated list
Diffstat (limited to 'custom')
-rw-r--r--custom/plugins/gitignore/gitignore.plugin.zsh3
1 files changed, 2 insertions, 1 deletions
diff --git a/custom/plugins/gitignore/gitignore.plugin.zsh b/custom/plugins/gitignore/gitignore.plugin.zsh
index 1b866c0d0..332497cec 100644
--- a/custom/plugins/gitignore/gitignore.plugin.zsh
+++ b/custom/plugins/gitignore/gitignore.plugin.zsh
@@ -5,7 +5,8 @@ _gitignireio_get_command_list() {
}
_gitignireio () {
- compadd `_gitignireio_get_command_list`
+ compset -P '*,'
+ compadd -S '' `_gitignireio_get_command_list`
}
compdef _gitignireio gi \ No newline at end of file