aboutsummaryrefslogtreecommitdiff
path: root/crates/tools/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-12-09 09:09:07 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-12-09 09:09:07 +0000
commit904438e993b4cc3c1d9269a44436c1b112de16c0 (patch)
treead5883464be94eae707a738802377fcd22a7eef4 /crates/tools/src/lib.rs
parentc011fb70563d9eddb1e62436f78c206f3be0d00e (diff)
parentbb0c2eb8d9da46ca1c71e42dcc363c13028b3eae (diff)
Merge #267
267: Fix the extend keybinding r=DJMcNab a=DJMcNab Make the extend selection keybinding less annoying for users not used to Injelli-J (myself included). Also fixes a minor style issue and runs `npm update`. Co-authored-by: DJMcNab <[email protected]>
Diffstat (limited to 'crates/tools/src/lib.rs')
-rw-r--r--crates/tools/src/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/tools/src/lib.rs b/crates/tools/src/lib.rs
index c2123db99..674b9d11f 100644
--- a/crates/tools/src/lib.rs
+++ b/crates/tools/src/lib.rs
@@ -112,10 +112,7 @@ pub fn run_rustfmt(mode: Mode) -> Result<()> {
112fn install_rustfmt() -> Result<()> { 112fn install_rustfmt() -> Result<()> {
113 run(&format!("rustup install {}", TOOLCHAIN), ".")?; 113 run(&format!("rustup install {}", TOOLCHAIN), ".")?;
114 run( 114 run(
115 &format!( 115 &format!("rustup component add rustfmt --toolchain {}", TOOLCHAIN),
116 "rustup component add rustfmt-preview --toolchain {}",
117 TOOLCHAIN
118 ),
119 ".", 116 ".",
120 ) 117 )
121} 118}