From 3af7e93324d4fb8dbcb19f60eb7e7357fd350033 Mon Sep 17 00:00:00 2001 From: FRIGN Date: Thu, 14 Jul 2016 11:23:17 +0200 Subject: [PATCH] add ff and ff.bz2 support in config.def.h --- config.def.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 023f8cd..f66d121 100644 --- a/config.def.h +++ b/config.def.h @@ -49,5 +49,7 @@ static Shortcut shortcuts[] = { }; static Filter filters[] = { - { "\\.(png|jpg|gif)$", "2ff" }, + { "\\.ff$", "cat" }, + { "\\.ff.bz2$", "bunzip2" }, + { "\\.[a-z0-9]+$", "2ff" }, };