mirror of
https://github.com/sharkdp/bat.git
synced 2025-01-14 09:38:34 +01:00
only print themes hint in interactive mode
This commit is contained in:
parent
f3489ffa29
commit
84b0702399
@ -5,6 +5,8 @@
|
||||
|
||||
## Bugfixes
|
||||
|
||||
- only print themes hint in interactive mode (`bat --list-themes`), see #1439 (@rsteube)
|
||||
|
||||
## Other
|
||||
|
||||
## Syntaxes
|
||||
|
@ -200,11 +200,6 @@ pub fn list_themes(cfg: &Config) -> Result<()> {
|
||||
.ok();
|
||||
writeln!(stdout)?;
|
||||
}
|
||||
} else {
|
||||
for theme in assets.themes() {
|
||||
writeln!(stdout, "{}", theme)?;
|
||||
}
|
||||
}
|
||||
writeln!(
|
||||
stdout,
|
||||
"Further themes can be installed to '{}', \
|
||||
@ -213,6 +208,11 @@ pub fn list_themes(cfg: &Config) -> Result<()> {
|
||||
https://github.com/sharkdp/bat#adding-new-themes",
|
||||
config_file().join("themes").to_string_lossy()
|
||||
)?;
|
||||
} else {
|
||||
for theme in assets.themes() {
|
||||
writeln!(stdout, "{}", theme)?;
|
||||
}
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user