Using VSCode keybindings for stepping so they don't clash with monaco keybindings.

This commit is contained in:
Daan Vanden Bosch 2020-04-30 19:16:39 +02:00
parent 073d4920b4
commit 06443d5f8c
2 changed files with 6 additions and 7 deletions

View File

@ -6,7 +6,6 @@ import { GuiStore, GuiTool } from "../../core/stores/GuiStore";
import { LogEntry } from "../../core/Logger"; import { LogEntry } from "../../core/Logger";
import { LogStore } from "../stores/LogStore"; import { LogStore } from "../stores/LogStore";
import { Severity } from "../../core/Severity"; import { Severity } from "../../core/Severity";
import { property } from "../../core/observable";
export class DebugController extends Controller { export class DebugController extends Controller {
readonly can_debug: Property<boolean>; readonly can_debug: Property<boolean>;
@ -52,11 +51,11 @@ export class DebugController extends Controller {
gui_store.on_global_keydown(GuiTool.QuestEditor, "F6", this.resume), gui_store.on_global_keydown(GuiTool.QuestEditor, "F6", this.resume),
gui_store.on_global_keydown(GuiTool.QuestEditor, "F8", this.step_over), gui_store.on_global_keydown(GuiTool.QuestEditor, "F10", this.step_over),
gui_store.on_global_keydown(GuiTool.QuestEditor, "F7", this.step_in), gui_store.on_global_keydown(GuiTool.QuestEditor, "F11", this.step_in),
gui_store.on_global_keydown(GuiTool.QuestEditor, "Shift-F8", this.step_out), gui_store.on_global_keydown(GuiTool.QuestEditor, "Shift-F11", this.step_out),
); );
} }

View File

@ -37,17 +37,17 @@ export class DebugView extends ResizableView {
const step_over_button = new Button({ const step_over_button = new Button({
text: "Step over", text: "Step over",
icon_left: Icon.LongArrowRight, icon_left: Icon.LongArrowRight,
tooltip: "Execute the next line and step over any function calls (F8)", tooltip: "Execute the next line and step over any function calls (F10)",
}); });
const step_in_button = new Button({ const step_in_button = new Button({
text: "Step into", text: "Step into",
icon_left: Icon.LevelDown, icon_left: Icon.LevelDown,
tooltip: "Execute the next line and step inside any function calls (F7)", tooltip: "Execute the next line and step inside any function calls (F11)",
}); });
const step_out_button = new Button({ const step_out_button = new Button({
text: "Step out", text: "Step out",
icon_left: Icon.LevelUp, icon_left: Icon.LevelUp,
tooltip: "Execute until outside of current call frame (Shift-F8)", tooltip: "Execute until outside of current call frame (Shift-F11)",
}); });
const stop_button = new Button({ const stop_button = new Button({
text: "Stop", text: "Stop",