You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current code performs the splitting twice: the output of a command
is first split by IFS, second joined by \n while adding the prefix
`-`, and then again split by IFS, which is redundant. We may directly
split the output by `_comp_compgen_split` while adding the prefix
using the `-P` option.
0 commit comments