]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* .dir-locals.el: Update for newer LSP config
authorPaul Smith <psmith@gnu.org>
Mon, 8 Mar 2021 00:04:48 +0000 (19:04 -0500)
committerPaul Smith <psmith@gnu.org>
Mon, 8 Mar 2021 00:04:48 +0000 (19:04 -0500)
.dir-locals.el

index 30736ec23f5037678496be46fd20e5f6af01dc2c..f6665e6c2498ce8ae6bbd1929b559576e6bd622c 100644 (file)
@@ -1,18 +1,21 @@
 (
  (nil . ((bug-reference-bug-regexp . "\\(\\)\\bSV[- ]\\([0-9]+\\)")
          (bug-reference-url-format . "https://savannah.gnu.org/bugs/?%s")
-         (ccls-initialization-options . (:index (:threads 6
-                                                 :initialBlacklist ("/make-[0-9]" "tests/work/" "/\\.deps" "/\\..*cache" "/\\.git"))))
-         (lsp-file-watch-ignored . ("/\\.git$"
-                                    "/\\..*cache$"
-                                    ;; autotools content
-                                    "/\\.deps$"
-                                    "/autom4te\\.cache$"
-                                    "/build-aux$"
-                                    ;; make-specific content
-                                    "/doc/manual$"
-                                    "/tests/work$"
-                                    "/make-[0-9]"))
+         (ccls-initialization-options
+          . (:index (:threads 6
+                     :initialBlacklist ["/make-[0-9]" "tests/work/" "/\\.deps"
+                                        "/\\..*cache" "/\\.git"])))
+         (lsp-file-watch-ignored-directories
+          . ("[/\\\\]\\.git$"
+             "[/\\\\]\\..*cache$"
+             ;; autotools content
+             "[/\\\\]\\.deps$"
+             "[/\\\\]autom4te\\.cache$"
+             "[/\\\\]build-aux$"
+             ;; make-specific content
+             "[/\\\\]doc[/\\\\]manual$"
+             "[/\\\\]tests[/\\\\]work$"
+             "[/\\\\]make-[0-9]"))
          ))
  (c-mode . ((c-file-style . "gnu")))
 )