mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 06:34:20 +00:00
Add rust-analyzer.toml on dev new
This commit is contained in:
parent
9459eef032
commit
47f8a0cbe5
1 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,7 @@ use std::{
|
||||||
process::Command,
|
process::Command,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::CURRENT_FORMAT_VERSION;
|
use crate::{init::RUST_ANALYZER_TOML, CURRENT_FORMAT_VERSION};
|
||||||
|
|
||||||
// Create a directory relative to the current directory and print its path.
|
// Create a directory relative to the current directory and print its path.
|
||||||
fn create_rel_dir(dir_name: &str, current_dir: &str) -> Result<()> {
|
fn create_rel_dir(dir_name: &str, current_dir: &str) -> Result<()> {
|
||||||
|
@ -62,6 +62,8 @@ pub fn new(path: &Path, no_git: bool) -> Result<()> {
|
||||||
|
|
||||||
write_rel_file("README.md", &dir_path_str, README)?;
|
write_rel_file("README.md", &dir_path_str, README)?;
|
||||||
|
|
||||||
|
write_rel_file("rust-analyzer.toml", &dir_path_str, RUST_ANALYZER_TOML)?;
|
||||||
|
|
||||||
create_rel_dir(".vscode", &dir_path_str)?;
|
create_rel_dir(".vscode", &dir_path_str)?;
|
||||||
write_rel_file(
|
write_rel_file(
|
||||||
".vscode/extensions.json",
|
".vscode/extensions.json",
|
||||||
|
|
Loading…
Reference in a new issue