diff options
author | hut <hut@lavabit.com> | 2012-08-10 11:50:39 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2012-08-10 11:50:39 +0200 |
commit | 5856458fa272b009b9160525188671cddfe7860f (patch) | |
tree | 8e6041608b14bab053ab67658f801c926e1d08da | |
parent | e58e40ba62dc63b1941dd5e411bc48dc77d6a9ad (diff) | |
download | ranger-5856458fa272b009b9160525188671cddfe7860f.tar.gz |
defaults/apps.py: added "odb" entry
-rw-r--r-- | ranger/defaults/apps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py index 1619eb1e..ffab8bea 100644 --- a/ranger/defaults/apps.py +++ b/ranger/defaults/apps.py @@ -135,7 +135,7 @@ class CustomApplications(Applications): if f.extension == 'doc': return self.either(c, 'abiword', 'libreoffice', 'soffice', 'ooffice') - if f.extension in ('odt', 'ods', 'odp', 'odf', 'odg', 'sxc', + if f.extension in ('odt', 'ods', 'odp', 'odf', 'odg', 'odb', 'sxc', 'stc', 'xls', 'xlsx', 'xlt', 'xlw', 'gnm', 'gnumeric'): return self.either(c, 'gnumeric', 'kspread', 'libreoffice', 'soffice', 'ooffice') |