From 55f23dd2da5f723176f78e0b8473fb2897d4f98d Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Tue, 19 Mar 2019 18:18:39 -0400 Subject: [PATCH] fixed mimetype bug --- conf.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.org b/conf.org index eafcd8a..2b20c52 100644 --- a/conf.org +++ b/conf.org @@ -150,7 +150,7 @@ OS is one of those in `system-type'." "Return all applications that can open a given MIMETYPE. The list is comprised of alists where pairs are of the form (name . command)." (let* ((case-fold-search nil) - (mime-regex (concat "^MimeType=.*" mimetype ";.*$")) + (mime-regex (concat "^MimeType=.*" mimetype ";?.*$")) (desktop-dirs '("/usr/share/applications" "/usr/local/share/applications" "~/.local/share/applications"))