* .dir-locals.el: Update for newer LSP config

This commit is contained in:
Paul Smith 2021-03-07 19:04:48 -05:00
parent 74bd8b3aa5
commit 7b0a741857

View File

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