summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-07-08 12:53:44 +0200
committerrabite <rabite@posteo.de>2019-07-08 13:00:32 +0200
commit072b39b3cfeac109f8bb0fff747c6dc50d747942 (patch)
treeb96cbdc6e8cdcfcc214cbfcf92145cd19b00e3fc /src/main.rs
parent9b6bb7fea092b621337e797b8fd3628ff7ad8218 (diff)
initial support for SIXEL/kitty graphics
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 7efbad7..959e5a2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -151,6 +151,12 @@ fn parse_args() -> HResult<()> {
.long("icons")
.help("Show icons for different file types")
.takes_value(false))
+ .arg(
+ Arg::with_name("sixel")
+ .short("s")
+ .long("sixel")
+ .help("Show HQ graphics using sixel")
+ .takes_value(false))
// For "Add Action" action
.arg(
Arg::with_name("mime")