mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(cc,javascript): projectile-globally-ignored-directories
This variable accepts literal strings, not regexps. Ref: #7538
This commit is contained in:
@ -193,7 +193,7 @@ This is ignored by ccls.")
|
||||
(add-to-list 'project-vc-ignores "^\\.ccls-cache$"))
|
||||
;; DEPRECATED: Remove when projectile is replaced with project.el
|
||||
(after! projectile
|
||||
(add-to-list 'projectile-globally-ignored-directories "^.ccls-cache$")
|
||||
(add-to-list 'projectile-globally-ignored-directories ".ccls-cache")
|
||||
(add-to-list 'projectile-project-root-files-bottom-up ".ccls-root")
|
||||
(add-to-list 'projectile-project-root-files-top-down-recurring "compile_commands.json"))
|
||||
:config
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
(after! projectile
|
||||
(pushnew! projectile-project-root-files "package.json")
|
||||
(pushnew! projectile-globally-ignored-directories "^node_modules$" "^flow-typed$"))
|
||||
(pushnew! projectile-globally-ignored-directories "node_modules" "flow-typed"))
|
||||
|
||||
|
||||
;;
|
||||
|
Reference in New Issue
Block a user