about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Kurilla <130074511+davidkurilla@users.noreply.github.com>2024-10-22 08:44:02 -0700
committerDavid Kurilla <davidkurilla03@gmail.com>2024-10-22 08:48:09 -0700
commit32b05c1a906c8c8a71aa5239e4c6ffeab43b4912 (patch)
treeecd226d27c60e812fc0887a3eff7f60140b41f31
parentbe7865e9043181debc8ae442d2bf3eae245e5b23 (diff)
downloadrust-32b05c1a906c8c8a71aa5239e4c6ffeab43b4912.tar.gz
rust-32b05c1a906c8c8a71aa5239e4c6ffeab43b4912.zip
docs: remove unnecessary prerequisites setup.md
-rw-r--r--src/tools/rust-analyzer/docs/dev/setup.md12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/tools/rust-analyzer/docs/dev/setup.md b/src/tools/rust-analyzer/docs/dev/setup.md
index 62b8bd9a44c..d8a7840d376 100644
--- a/src/tools/rust-analyzer/docs/dev/setup.md
+++ b/src/tools/rust-analyzer/docs/dev/setup.md
@@ -1,17 +1,11 @@
 # Setup Guide
 
-This guide gives a simplified opinionated setup for developers contributing to rust-analyzer.
+This guide gives a simplified opinionated setup for developers contributing to rust-analyzer using Visual Studio Code to make changes and Visual Studio Code Insiders to test those changes. This guide will assume you have Visual Studio Code and Visual Studio Code Insiders installed.
 
 ## Prerequisites
 
 Since rust-analyzer is a Rust project, you will need to install Rust. You can download and install the latest stable version of Rust [here](https://www.rust-lang.org/tools/install).
 
-You will also need Visual Studio Code and Visual Studio Code Insiders for this workflow. You can download and install Visual Studio Code [here](https://code.visualstudio.com/Download) and you can download and install Visual Studio Code Insiders [here](https://code.visualstudio.com/insiders/).
-
-You will also need to install the rust-analyzer extension for Visual Studio Code and Visual Studio Code Insiders.
-
-More information about Rust on Visual Studio Code can be found [here](https://code.visualstudio.com/docs/languages/rust)
-
 ## Step-by-Step Setup
 
 **Step 01**: Fork the rust-analyzer repository and clone the fork to your local machine.
@@ -27,7 +21,7 @@ cargo xtask install --server --code-bin code-insiders --dev-rel
 ```
 
 In the output of this command, there should be a file path provided to the installed binary on  your local machine.
-It should look something like the following output below
+It should look something like the following output below:
 
 ```
 Installing <path-to-rust-analyzer-binary>
@@ -60,4 +54,4 @@ cargo xtask install --server --code-bin code-insiders --dev-rel` to reinstall th
 
 Now on Visual Studio Code Insiders, we should be able to open the Output tab on our terminal and switch to Rust Analyzer Language Server to see the `eprintln!` statement we just wrote.
 
-If you are able to see your output, you now have a complete workflow for debugging rust-analyzer.
\ No newline at end of file
+If you are able to see your output, you now have a complete workflow for debugging rust-analyzer.