]> git.eshelyaron.com Git - emacs.git/commitdiff
Add ".jj" to vc-directory-exclusion-list
authorRudi Schlatte <rudi@constantly.at>
Mon, 24 Feb 2025 17:04:46 +0000 (18:04 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 26 Feb 2025 09:34:41 +0000 (10:34 +0100)
* lisp/vc/vc-hooks.el (vc-directory-exclusion-list): Add ".jj", a
directory used by the jujutsu version control system.  (Bug#76524)

(cherry picked from commit bca04d3c580e3bd3d787274973d33ce95098d423)

lisp/vc/vc-hooks.el

index 49434ed22fef33282113e16d0bf2e1121474440c..d6dcf9d421b1baa61a5be3fed469adf6cfffa674 100644 (file)
@@ -123,7 +123,8 @@ An empty list disables VC altogether."
 ;; The Arch back end will be retrieved and fixed if it is ever required.
 (defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS"
                                         ".src" ".svn" ".git" ".hg" ".bzr"
-                                         "_MTN" "_darcs" "{arch}")
+                                         "_MTN" "_darcs" "{arch}" ".repo"
+                                         ".jj")
   "List of directory names to be ignored when walking directory trees."
   :type '(repeat string)
   :group 'vc)