Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.org
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
* Fix missing gopls inlay hints when ~lsp-use-plist~ is true
* Fix bug where persist was attempted when lsp-session-file is nil
* Debugging tests in Rust no longer runs all the tests prior to launching debug session.
* Add [[https://devenv.sh/][devenv]] and [[https://jj-vcs.github.io/jj/latest/][jj]] directories to the list of ignored directories (~lsp-file-watch-ignored-directories~)

** 9.0.0
* Add language server config for QML (Qt Modeling Language) using qmlls.
Expand Down
5 changes: 4 additions & 1 deletion lsp-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@ the server has requested that."
"[/\\\\]_darcs\\'"
"[/\\\\]\\.svn\\'"
"[/\\\\]_FOSSIL_\\'"
"[/\\\\]\\.jj\\'"
;; IDE or build tools
"[/\\\\]\\.idea\\'"
"[/\\\\]\\.ensime_cache\\'"
Expand Down Expand Up @@ -423,7 +424,9 @@ the server has requested that."
;; nix-direnv
"[/\\\\]\\result"
"[/\\\\]\\result-bin"
"[/\\\\]\\.direnv\\'")
"[/\\\\]\\.direnv\\'"
;; nix-devenv
"[/\\\\]\\.devenv\\'")
"List of regexps matching directory paths which won't be monitored when
creating file watches. Customization of this variable is only honored at
the global level or at a root of an lsp workspace."
Expand Down