mirror of
https://github.com/sharkdp/bat
synced 2026-08-26 14:13:37 +01:00
Language names like "HTML (Jinja2)" and "Apache Conf" contain spaces, which
caused $() command substitution to word-split them into garbage tokens. Use
${(f)"$(...)"} (split on newlines only) to match the pattern already used
for theme completions on line 100.
Fixes #2897