From: Paul Smith Date: Mon, 8 Mar 2021 00:04:48 +0000 (-0500) Subject: * .dir-locals.el: Update for newer LSP config X-Git-Tag: 4.3.90~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b0a7418579a57934d4871205ffa29d0865dcc0e;p=thirdparty%2Fmake.git * .dir-locals.el: Update for newer LSP config --- diff --git a/.dir-locals.el b/.dir-locals.el index 30736ec2..f6665e6c 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -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"))) )