From 8d96f5b6c3b6f1c998c22a1d4d8578c1772c8895 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Mon, 12 Apr 2021 11:26:50 +0200 Subject: [PATCH] Helm/Emms: Add "aac" and "opus" to list of known formats. --- .emacs.d/lisp/init-helm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/lisp/init-helm.el b/.emacs.d/lisp/init-helm.el index dc66aed6..edd51bdb 100644 --- a/.emacs.d/lisp/init-helm.el +++ b/.emacs.d/lisp/init-helm.el @@ -304,7 +304,7 @@ With prefix argument, UPDATE the databases with custom uptions thanks to the (lambda (candidate) (or (file-directory-p candidate) (and (file-name-extension candidate) - (string-match-p (concat (regexp-opt '("mp3" "mp4" "m4a" "ogg" "flac" "spx" "wma" "wv")) "$") + (string-match-p (concat (regexp-opt '("aac" "mp3" "mp4" "m4a" "ogg" "opus" "flac" "spx" "wma" "wv")) "$") (file-name-extension candidate))))) 1))