1
0
mirror of https://github.com/sharkdp/bat synced 2026-08-10 20:01:45 +00:00

Do not export syntax_set and theme_set

This commit is contained in:
sharkdp
2020-03-21 20:01:36 +01:00
committed by David Peter
parent fc1ca0875a
commit 62f2d0c100
3 changed files with 12 additions and 5 deletions
+1 -2
View File
@@ -60,7 +60,6 @@ fn run_cache_subcommand(matches: &clap::ArgMatches) -> Result<()> {
pub fn list_languages(config: &Config) -> Result<()> {
let assets = assets_from_cache_or_binary();
let mut languages = assets
.syntax_set
.syntaxes()
.iter()
.filter(|syntax| !syntax.hidden && !syntax.file_extensions.is_empty())
@@ -122,7 +121,7 @@ pub fn list_languages(config: &Config) -> Result<()> {
pub fn list_themes(cfg: &Config) -> Result<()> {
let assets = assets_from_cache_or_binary();
let themes = &assets.theme_set.themes;
let themes = assets.themes();
let mut config = cfg.clone();
let mut style = HashSet::new();
style.insert(OutputComponent::Plain);