Fix 'simple mode for +treemacs-use-git-mode

Due to pattern mismatch, 'simple mode was never activated.
This commit is contained in:
Henrik Lissner 2018-08-06 13:20:46 +02:00
parent 1d7f141e3d
commit 4ab1bbbdba
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -24,7 +24,7 @@
(pcase (cons (not (null (executable-find "git"))) (pcase (cons (not (null (executable-find "git")))
(not (null (executable-find "python3")))) (not (null (executable-find "python3"))))
(`(t . t) 'extended) (`(t . t) 'extended)
(`(t . _) 'simple)) (`(t) 'simple))
"Type of git integration for `treemacs-git-mode'. "Type of git integration for `treemacs-git-mode'.
There are 2 possible values: There are 2 possible values:
1) simple, which highlights only files based on their git status, and is 1) simple, which highlights only files based on their git status, and is