From 4ab1bbbdbaf777c84a93629fd15a4e858f0eff49 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 6 Aug 2018 13:20:46 +0200 Subject: [PATCH] Fix 'simple mode for +treemacs-use-git-mode Due to pattern mismatch, 'simple mode was never activated. --- modules/ui/treemacs/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/treemacs/config.el b/modules/ui/treemacs/config.el index 7e6f399e0..4deff39f0 100644 --- a/modules/ui/treemacs/config.el +++ b/modules/ui/treemacs/config.el @@ -24,7 +24,7 @@ (pcase (cons (not (null (executable-find "git"))) (not (null (executable-find "python3")))) (`(t . t) 'extended) - (`(t . _) 'simple)) + (`(t) 'simple)) "Type of git integration for `treemacs-git-mode'. There are 2 possible values: 1) simple, which highlights only files based on their git status, and is