diff options
author | hut <hut@lavabit.com> | 2010-04-09 04:07:21 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-09 04:07:21 +0200 |
commit | 0fcbf6dcc044709ec240edfcb5a72147b7bbb4c4 (patch) | |
tree | 3677f47c3fce1b5d99f540d53bf6f59524ad5815 | |
parent | 93ecd88d9ad4231ab4926c2df43e00047900cd99 (diff) | |
download | ranger-0fcbf6dcc044709ec240edfcb5a72147b7bbb4c4.tar.gz |
defaults.apps: edit xml files with editor
-rw-r--r-- | ranger/defaults/apps.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py index 9543badb..b3500c0d 100644 --- a/ranger/defaults/apps.py +++ b/ranger/defaults/apps.py @@ -58,9 +58,11 @@ class CustomApplications(Applications): f = c.file if f.extension is not None: - if f.extension in ('pdf'): + if f.extension in ('pdf' ): c.flags += 'd' return self.either(c, 'evince', 'zathura', 'apvlv') + if f.extension in ('xml', ): + return self.app_editor(c) if f.extension in ('html', 'htm', 'xhtml', 'swf'): return self.either(c, 'firefox', 'opera', 'elinks') if f.extension in ('swc', 'smc'): |