mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Correctly parse projects with spaces in zsh completion
This is the same as how the `_task_zshids` array is created. See https://github.com/robbyrussell/oh-my-zsh/issues/8249
This commit is contained in:
parent
938e9130d6
commit
dcdf7127e0
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
|||
# https://www.opensource.org/licenses/mit-license.php
|
||||
#
|
||||
typeset -g _task_cmds _task_projects _task_tags _task_config _task_modifiers
|
||||
_task_projects=($(task _projects))
|
||||
_task_projects=(${(f)"$(task _projects)"})
|
||||
_task_tags=($(task _tags))
|
||||
_task_zshids=( ${(f)"$(task _zshids)"} )
|
||||
_task_config=($(task _config))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue