emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/vc-got d06f988 019/145: suggest to add .got to vc-direc


From: ELPA Syncer
Subject: [elpa] externals/vc-got d06f988 019/145: suggest to add .got to vc-directory-exclusion-list
Date: Thu, 9 Sep 2021 15:58:25 -0400 (EDT)

branch: externals/vc-got
commit d06f9880de206d7ff5133d5ddea7cd0f67f3cb6a
Author: Omar Polo <op@omarpolo.com>
Commit: Omar Polo <op@omarpolo.com>

    suggest to add .got to vc-directory-exclusion-list
---
 README.md | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index d2dbdb8..84830bd 100644
--- a/README.md
+++ b/README.md
@@ -15,11 +15,20 @@ require the library.
 (cl-pushnew 'Got vc-handled-backends)
 ```
 
+It's highly recommended to add `".got"` to the list of
+`vc-directory-exclusion-list`.
+
+```emacs-lisp
+(cl-pushnew ".got" vc-directory-exclusion-list)
+```
+
 With `use-package` something like this should be enough:
 
 ```emacs-lisp
 (use-package vc-got
   :load-path "/path/to/vc-got/"
-  :init (cl-pushnew 'Got vc-handled-backends)
-  :defer t)
+  :defer t
+  :init
+  (cl-pushnew 'Got vc-handled-backends)
+  (cl-pushnew ".got" vc-directory-exclusion-list))
 ```



reply via email to

[Prev in Thread] Current Thread [Next in Thread]