mirror of
https://github.com/Hopiu/micro.git
synced 2026-03-23 17:30:24 +00:00
Add missing resize in TabMove (#3619)
This commit is contained in:
parent
c02036e52f
commit
dc18642985
1 changed files with 1 additions and 0 deletions
|
|
@ -205,6 +205,7 @@ func (h *BufPane) TabMoveCmd(args []string) {
|
|||
Tabs.List = append(Tabs.List, nil)
|
||||
copy(Tabs.List[idxTo+1:], Tabs.List[idxTo:])
|
||||
Tabs.List[idxTo] = activeTab
|
||||
Tabs.Resize()
|
||||
Tabs.UpdateNames()
|
||||
Tabs.SetActive(idxTo)
|
||||
// InfoBar.Message(fmt.Sprintf("Moved tab from slot %d to %d", idxFrom+1, idxTo+1))
|
||||
|
|
|
|||
Loading…
Reference in a new issue