mirror of
https://github.com/zyedidia/micro
synced 2024-11-05 17:41:24 +00:00
parent
671a188802
commit
fee5528309
1 changed files with 5 additions and 1 deletions
|
@ -821,7 +821,11 @@ func (h *BufPane) TermCmd(args []string) {
|
|||
|
||||
term := func(i int, newtab bool) {
|
||||
t := new(shell.Terminal)
|
||||
t.Start(args, false, true, nil, nil)
|
||||
err := t.Start(args, false, true, nil, nil)
|
||||
if err != nil {
|
||||
InfoBar.Error(err)
|
||||
return
|
||||
}
|
||||
|
||||
id := h.ID()
|
||||
if newtab {
|
||||
|
|
Loading…
Reference in a new issue