Skip to content

Commit

Permalink
Merge pull request #18407 from hackervole/code-fix-welcome-setup-tips
Browse files Browse the repository at this point in the history
Fix formatting on welcome page, read only paths setting example
  • Loading branch information
Veykril authored Oct 25, 2024
2 parents 6a67a4d + d2e856c commit 169d446
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions editors/code/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
!ra_syntax_tree.tmGrammar.json
!server
!README.md
!walkthrough-setup-tips.md
7 changes: 3 additions & 4 deletions editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3224,10 +3224,9 @@
{
"id": "setup",
"title": "Useful Setup Tips",
"description": "There are a couple of things you might want to configure upfront to your tastes. We'll name a few here but be sure to check out the docs linked below!\n\n**Marking library sources as readonly**\n\nAdding the following to your settings.json will mark all Rust library sources as readonly:\n```json\n\"files.readonlyInclude\": {\n \"**/.cargo/registry/src/**/*.rs\": true,\n \"**/lib/rustlib/src/rust/library/**/*.rs\": true,\n},\n```\n\n**Check on Save**\n\nBy default, rust-analyzer will run `cargo check` on your codebase when you save a file, rendering diagnostics emitted by `cargo check` within your code. This can potentially collide with other `cargo` commands running concurrently, blocking them from running for a certain amount of time. In these cases it is recommended to disable the `rust-analyzer.checkOnSave` configuration and running the `rust-analyzer: Run flycheck` command on-demand instead.",
"description": "There are a couple of things you might want to configure upfront to your tastes. We'll name a few here but be sure to check out the docs linked below!\n\n**Marking library sources as readonly**\n\nAdding the snippet on the right to your settings.json will mark all Rust library sources as readonly.\n\n**Check on Save**\n\nBy default, rust-analyzer will run ``cargo check`` on your codebase when you save a file, rendering diagnostics emitted by ``cargo check`` within your code. This can potentially collide with other ``cargo`` commands running concurrently, blocking them from running for a certain amount of time. In these cases it is recommended to disable the ``rust-analyzer.checkOnSave`` configuration and running the ``rust-analyzer: Run flycheck`` command on-demand instead.",
"media": {
"image": "./icon.png",
"altText": "rust-analyzer logo"
"markdown": "./walkthrough-setup-tips.md"
}
},
{
Expand All @@ -3245,7 +3244,7 @@
{
"id": "faq",
"title": "FAQ",
"description": "What are these code hints that are being inserted into my code?\n\nThese hints are called inlay hints which rust-analyzer support and are enabled by default in VSCode. If you wish to disable them you can do so via the `editor.inlayHints.enabled` setting.",
"description": "What are these code hints that are being inserted into my code?\n\nThese hints are called inlay hints which rust-analyzer support and are enabled by default in VSCode. If you wish to disable them you can do so via the ``editor.inlayHints.enabled`` setting.",
"media": {
"image": "icon.png",
"altText": "rust-analyzer logo"
Expand Down
10 changes: 10 additions & 0 deletions editors/code/walkthrough-setup-tips.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Settings Example

Add the following to settings.json to mark Rust library sources as read-only:

```json
"files.readonlyInclude": {
"**/.cargo/registry/src/**/*.rs": true,
"**/lib/rustlib/src/rust/library/**/*.rs": true,
},
```

0 comments on commit 169d446

Please sign in to comment.