From 44681c50572eb75dc3059e5de2c0f537e2c76706 Mon Sep 17 00:00:00 2001 From: Omnikar Date: Thu, 9 Dec 2021 21:04:31 -0500 Subject: [PATCH] Add `default-run = "hx"` to `helix-term/Cargo.toml` (#1244) Following the addition of `xtask`, `cargo run` has multiple possible targets, necessitating the usage of `cargo run --bin hx` to run Helix during development. This allows `cargo run` to be used to run `hx`. --- helix-term/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index a0079febe..623c5bb94 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -9,6 +9,7 @@ categories = ["editor", "command-line-utilities"] repository = "https://github.com/helix-editor/helix" homepage = "https://helix-editor.com" include = ["src/**/*", "README.md"] +default-run = "hx" [package.metadata.nix] build = true