Skip to content

Commit b639a6c

Browse files
authored
Add dotnet build-output folders to lsp-file-watch-ignored. (#2321)
- This closes #2320.
1 parent 34de304 commit b639a6c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lsp-mode.el

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,10 @@ the server has requested that."
505505
"[/\\\\]\\.deps\\'"
506506
"[/\\\\]build-aux\\'"
507507
"[/\\\\]autom4te.cache\\'"
508-
"[/\\\\]\\.reference\\'")
508+
"[/\\\\]\\.reference\\'"
509+
;; .Net Core build-output
510+
"[/\\\\]bin/Debug\\'"
511+
"[/\\\\]obj\\'")
509512
"List of regexps matching directory paths which won't be monitored when creating file watches."
510513
:group 'lsp-mode
511514
:type '(repeat string)

0 commit comments

Comments
 (0)