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
3 changes: 0 additions & 3 deletions LSP-rust-analyzer.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
"assist.expressionFillDefault": "todo",
// Prefer to use `Self` over the type name when inserting a type (e.g. in "fill match arms" assist).
"assist.preferSelf": false,
// Enable borrow checking for term search code assists. If set to false, also there will be
// more suggestions, but some of them may not borrow-check.
"assist.termSearch.borrowcheck": true,
// Term search fuel in "units of work" for assists (Defaults to 1800).
"assist.termSearch.fuel": 1800,
// Warm up caches on project load.
Expand Down
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
Terminus = None


TAG = "2026-08-03"
TAG = "2026-08-17"
"""
Update this single git tag to download a newer version.
After changing this tag, go through the server settings again to see
Expand Down
9 changes: 2 additions & 7 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,6 @@
"default": false,
"type": "boolean"
},
"assist.termSearch.borrowcheck": {
"markdownDescription": "Enable borrow checking for term search code assists. If set to false, also there will be\nmore suggestions, but some of them may not borrow-check.",
"default": true,
"type": "boolean"
},
"assist.termSearch.fuel": {
"markdownDescription": "Term search fuel in \"units of work\" for assists (Defaults to 1800).",
"default": 1800,
Expand Down Expand Up @@ -175,7 +170,7 @@
],
"markdownEnumDescriptions": [
"The command will be executed for each Rust workspace with the workspace as the working directory.",
"The command will be executed once with the opened project as the working directory."
"The command will be executed once with the opened project as the working directory.\n\n**Warning:** This can cause errors when the Cargo configuration of the opened workspaces is different or even only different than the default. Enabling this is not recommended."
]
},
"cargo.buildScripts.overrideCommand": {
Expand Down Expand Up @@ -388,7 +383,7 @@
],
"markdownEnumDescriptions": [
"The command will be executed for each Rust workspace with the workspace as the working directory.",
"The command will be executed once with the opened project as the working directory."
"The command will be executed once with the opened project as the working directory.\n\n**Warning:** This can cause errors when the Cargo configuration of the opened workspaces is different or even only different than the default. Enabling this is not recommended."
]
},
"check.noDefaultFeatures": {
Expand Down