diff options
author | Omnikar | 2021-12-10 02:04:31 +0000 |
---|---|---|
committer | GitHub | 2021-12-10 02:04:31 +0000 |
commit | 44681c50572eb75dc3059e5de2c0f537e2c76706 (patch) | |
tree | 4b5830243b857735adcaf966c4de1e97300743a4 | |
parent | a1e64815cbffe1a35d0692c61cd59cd777a77d67 (diff) |
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`.
-rw-r--r-- | helix-term/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index a0079feb..623c5bb9 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 |