Skip to content

Commit

Permalink
update rust-analyzer to 2024-02-05 (#120)
Browse files Browse the repository at this point in the history
Co-authored-by: rchl <[email protected]>
Co-authored-by: Rafal Chlodnicki <[email protected]>
  • Loading branch information
3 people authored Feb 9, 2024
1 parent b69f076 commit ba87be0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions LSP-rust-analyzer.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,8 @@
"rust-analyzer.procMacro.server": null,
// Exclude imports from find-all-references.
"rust-analyzer.references.excludeImports": false,
// Exclude tests from find-all-references.
"rust-analyzer.references.excludeTests": false,
// Allow renaming of items not belonging to the loaded workspaces.
"rust-analyzer.rename.allowExternalItems": false,
// Whether to restart the server automatically when certain settings that require a restart are changed.
Expand Down
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

SESSION_NAME = "rust-analyzer"

TAG = "2024-01-29"
TAG = "2024-02-05"
"""
Update this single git tag to download a newer version.
After changing this tag, go through the server settings again to see
Expand Down
5 changes: 5 additions & 0 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1150,6 +1150,11 @@
"markdownDescription": "Exclude imports from find-all-references.",
"type": "boolean"
},
"rust-analyzer.references.excludeTests": {
"markdownDescription": "Exclude tests from find-all-references.",
"default": false,
"type": "boolean"
},
"rust-analyzer.rename.allowExternalItems": {
"markdownDescription": "Allow renaming of items not belonging to the loaded workspaces.",
"default": false,
Expand Down

0 comments on commit ba87be0

Please sign in to comment.