fix(app): open terminal pane when creating new terminal (#9926)

This commit is contained in:
Ronan Kearns
2026-01-21 22:09:08 -05:00
committed by GitHub
parent 65e267ed3a
commit af1e2887bd

View File

@@ -509,7 +509,10 @@ export default function Page() {
description: language.t("command.terminal.new.description"),
category: language.t("command.category.terminal"),
keybind: "ctrl+alt+t",
onSelect: () => terminal.new(),
onSelect: () => {
if (terminal.all().length > 0) terminal.new()
view().terminal.open()
},
},
{
id: "steps.toggle",