diff options
author | futjikato <m.spindelhirn@cashiers-check.de> | 2013-10-05 00:56:17 +0200 |
---|---|---|
committer | futjikato <m.spindelhirn@cashiers-check.de> | 2013-10-05 00:56:17 +0200 |
commit | 9afb139d20f12f93c086140db3e9bfd4913f15a0 (patch) | |
tree | 9bae93d20f665854b6ddb4a0cf0b727147eb8ad6 /custom | |
parent | 33b1a3bcfed1d52d48a3a467f81da1599d2fa883 (diff) | |
download | zsh-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.zsh | 3 |
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 |