mirror of
https://github.com/sharkdp/bat
synced 2026-06-09 10:03:18 +00:00
f39d63b85d
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