Skip to content

Commit

Permalink
Add dotnet build-output folders to lsp-file-watch-ignored. (emacs-lsp…
Browse files Browse the repository at this point in the history
…#2321)

- This closes emacs-lsp#2320.
  • Loading branch information
josteink authored Nov 11, 2020
1 parent 34de304 commit b639a6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lsp-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,10 @@ the server has requested that."
"[/\\\\]\\.deps\\'"
"[/\\\\]build-aux\\'"
"[/\\\\]autom4te.cache\\'"
"[/\\\\]\\.reference\\'")
"[/\\\\]\\.reference\\'"
;; .Net Core build-output
"[/\\\\]bin/Debug\\'"
"[/\\\\]obj\\'")
"List of regexps matching directory paths which won't be monitored when creating file watches."
:group 'lsp-mode
:type '(repeat string)
Expand Down

0 comments on commit b639a6c

Please sign in to comment.