From 9c34a4dd52745d161621150cc64c9364b0462e95 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Fri, 30 Jan 2026 08:31:47 +0100 Subject: [PATCH] Change bindings for build --- src/text_editor/plugin_build_window.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/text_editor/plugin_build_window.cpp b/src/text_editor/plugin_build_window.cpp index be3ad30..00d3e03 100644 --- a/src/text_editor/plugin_build_window.cpp +++ b/src/text_editor/plugin_build_window.cpp @@ -50,19 +50,19 @@ BSet ExecBuild(String windows_cmd, String unix_cmd, String working_dir = Project void CMD_Build1() { ExecBuild(Build1OnWindows, Build1OnUnix); -} RegisterCommand(CMD_Build1, "f1", "Run Build1OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); +} RegisterCommand(CMD_Build1, "ctrl-b", "Run Build1OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); void CMD_Build2() { ExecBuild(Build2OnWindows, Build2OnUnix); -} RegisterCommand(CMD_Build2, "f2", "Run Build2OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); +} RegisterCommand(CMD_Build2, "alt-b", "Run Build2OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); void CMD_Build3() { ExecBuild(Build3OnWindows, Build3OnUnix); -} RegisterCommand(CMD_Build3, "", "Run Build3OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); +} RegisterCommand(CMD_Build3, "shift-b", "Run Build3OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); void CMD_Build4() { ExecBuild(Build4OnWindows, Build4OnUnix); -} RegisterCommand(CMD_Build4, "f4", "Run Build4OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); +} RegisterCommand(CMD_Build4, "ctrl-alt-b", "Run Build4OnWindows or OnUnix in working directory, output is printed in a popup console and a special build buffer"); void CMD_RunFile() { Scratch scratch;