diff options
-rw-r--r-- | ranger/defaults/apps.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py index 77c66c7b..fbcc83c0 100644 --- a/ranger/defaults/apps.py +++ b/ranger/defaults/apps.py @@ -113,6 +113,8 @@ class CustomApplications(Applications): return self.either(c, 'evince') if f.extension in ('xml', 'csv'): return self.either(c, 'editor') + if f.extension == 'mid': + return self.either(c, 'wildmidi') if f.extension in ('html', 'htm', 'xhtml') or f.extension == 'swf': c.flags += 'd' handler = self.either(c, |