You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! Also see https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies
7
+
//! Also see <https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies>
Copy file name to clipboardexpand all lines: src/tools/rust-analyzer/crates/ide-completion/src/completions/env_vars.rs
+2-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
-
//! Completes environment variables defined by Cargo (https://doc.rust-lang.org/cargo/reference/environment-variables.html)
1
+
//! Completes environment variables defined by Cargo
//! Also see https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies
7
+
//! Also see <https://rustc-dev-guide.rust-lang.org/macro-expansion.html#hygiene-and-hierarchies>
Copy file name to clipboardexpand all lines: src/tools/rust-analyzer/crates/stdx/src/anymap.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
//! This file is a port of only the necessary features from https://github.com/chris-morgan/anymap version 1.0.0-beta.2 for use within rust-analyzer.
1
+
//! This file is a port of only the necessary features from <https://github.com/chris-morgan/anymap> version 1.0.0-beta.2 for use within rust-analyzer.
Copy file name to clipboardexpand all lines: src/tools/rust-analyzer/crates/toolchain/src/lib.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ impl Tool {
23
23
///
24
24
/// The current implementation checks three places for an executable to use:
25
25
/// 1) `$CARGO_HOME/bin/<executable_name>`
26
-
/// where $CARGO_HOME defaults to ~/.cargo (see https://doc.rust-lang.org/cargo/guide/cargo-home.html)
26
+
/// where $CARGO_HOME defaults to ~/.cargo (see <https://doc.rust-lang.org/cargo/guide/cargo-home.html>)
27
27
/// example: for cargo, this tries $CARGO_HOME/bin/cargo, or ~/.cargo/bin/cargo if $CARGO_HOME is unset.
28
28
/// It seems that this is a reasonable place to try for cargo, rustc, and rustup
29
29
/// 2) Appropriate environment variable (erroring if this is set but not a usable executable)
@@ -45,7 +45,7 @@ impl Tool {
45
45
/// example: for cargo, this tries all paths in $PATH with appended `cargo`, returning the
46
46
/// first that exists
47
47
/// 3) `$CARGO_HOME/bin/<executable_name>`
48
-
/// where $CARGO_HOME defaults to ~/.cargo (see https://doc.rust-lang.org/cargo/guide/cargo-home.html)
48
+
/// where $CARGO_HOME defaults to ~/.cargo (see <https://doc.rust-lang.org/cargo/guide/cargo-home.html>)
49
49
/// example: for cargo, this tries $CARGO_HOME/bin/cargo, or ~/.cargo/bin/cargo if $CARGO_HOME is unset.
50
50
/// It seems that this is a reasonable place to try for cargo, rustc, and rustup
51
51
/// 4) If all else fails, we just try to use the executable name directly
0 commit comments