From 2b3fcd31683225e5cac2094c5f15a6ad5bb8fdfa Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Wed, 25 Sep 2024 09:37:27 +0200 Subject: [PATCH] feat(helix): Added keybind for `cargo build` --- editor/helix/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/helix/config.toml b/editor/helix/config.toml index a798bc4..7767cff 100644 --- a/editor/helix/config.toml +++ b/editor/helix/config.toml @@ -24,6 +24,6 @@ normal = "block" select = "underline" [keys.normal] -backspace = {r = ":sh cargo run", p = ":sh python src/main.py"} +backspace = {r = ":sh cargo run", b = ":sh cargo build", p = ":sh python src/main.py"} a = ["ensure_selections_forward", "collapse_selection", "move_char_right", "insert_mode"] A-R = [":clipboard-paste-replace"]