Add move-tab command
This commit is contained in:
parent
2e381fa42d
commit
68f179021d
|
@ -0,0 +1,51 @@
|
||||||
|
package commands
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MoveTab struct{}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
register(MoveTab{})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (MoveTab) Aliases() []string {
|
||||||
|
return []string{"move-tab"}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (MoveTab) Complete(aerc *widgets.Aerc, args []string) []string {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (MoveTab) Execute(aerc *widgets.Aerc, args []string) error {
|
||||||
|
if len(args) == 1 {
|
||||||
|
return fmt.Errorf("Usage: %s [+|-]<index>", args[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
joinedArgs := strings.Join(args[1:], "")
|
||||||
|
|
||||||
|
n, err := strconv.Atoi(joinedArgs)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to parse index argument: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
i := aerc.SelectedTabIndex()
|
||||||
|
l := aerc.NumTabs()
|
||||||
|
|
||||||
|
if strings.HasPrefix(joinedArgs, "+") {
|
||||||
|
i = (i + n) % l
|
||||||
|
} else if strings.HasPrefix(joinedArgs, "-") {
|
||||||
|
i = (((i + n) % l) + l) % l
|
||||||
|
} else {
|
||||||
|
i = n
|
||||||
|
}
|
||||||
|
|
||||||
|
aerc.MoveTab(i)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -63,6 +63,10 @@ These commands work in any context.
|
||||||
Opens a new terminal tab with a shell running in the current working
|
Opens a new terminal tab with a shell running in the current working
|
||||||
directory, or the specified command.
|
directory, or the specified command.
|
||||||
|
|
||||||
|
*move-tab* [+|-]<index>
|
||||||
|
Moves the selected tab to the given index. If + or - is specified, the
|
||||||
|
number is interpreted as a delta from the selected tab.
|
||||||
|
|
||||||
*prev-tab* [n], *next-tab* [n]
|
*prev-tab* [n], *next-tab* [n]
|
||||||
Cycles to the previous or next tab in the list, repeating n times
|
Cycles to the previous or next tab in the list, repeating n times
|
||||||
(default: 1).
|
(default: 1).
|
||||||
|
|
|
@ -132,6 +132,47 @@ func (tabs *Tabs) SelectPrevious() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (tabs *Tabs) MoveTab(to int) {
|
||||||
|
from := tabs.Selected
|
||||||
|
|
||||||
|
if to < 0 {
|
||||||
|
to = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
if to >= len(tabs.Tabs) {
|
||||||
|
to = len(tabs.Tabs) - 1
|
||||||
|
}
|
||||||
|
|
||||||
|
tab := tabs.Tabs[from]
|
||||||
|
if to > from {
|
||||||
|
copy(tabs.Tabs[from:to], tabs.Tabs[from+1:to+1])
|
||||||
|
for i, h := range tabs.history {
|
||||||
|
if h == from {
|
||||||
|
tabs.history[i] = to
|
||||||
|
}
|
||||||
|
if h > from && h <= to {
|
||||||
|
tabs.history[i] -= 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if from > to {
|
||||||
|
copy(tabs.Tabs[to+1:from+1], tabs.Tabs[to:from])
|
||||||
|
for i, h := range tabs.history {
|
||||||
|
if h == from {
|
||||||
|
tabs.history[i] = to
|
||||||
|
}
|
||||||
|
if h >= to && h < from {
|
||||||
|
tabs.history[i] += 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
tabs.Tabs[to] = tab
|
||||||
|
tabs.Selected = to
|
||||||
|
tabs.TabStrip.Invalidate()
|
||||||
|
}
|
||||||
|
|
||||||
func (tabs *Tabs) NextTab() {
|
func (tabs *Tabs) NextTab() {
|
||||||
next := tabs.Selected + 1
|
next := tabs.Selected + 1
|
||||||
if next >= len(tabs.Tabs) {
|
if next >= len(tabs.Tabs) {
|
||||||
|
|
|
@ -283,6 +283,14 @@ func (aerc *Aerc) SelectedTab() ui.Drawable {
|
||||||
return aerc.tabs.Tabs[aerc.tabs.Selected].Content
|
return aerc.tabs.Tabs[aerc.tabs.Selected].Content
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (aerc *Aerc) SelectedTabIndex() int {
|
||||||
|
return aerc.tabs.Selected
|
||||||
|
}
|
||||||
|
|
||||||
|
func (aerc *Aerc) NumTabs() int {
|
||||||
|
return len(aerc.tabs.Tabs)
|
||||||
|
}
|
||||||
|
|
||||||
func (aerc *Aerc) NewTab(clickable ui.Drawable, name string) *ui.Tab {
|
func (aerc *Aerc) NewTab(clickable ui.Drawable, name string) *ui.Tab {
|
||||||
tab := aerc.tabs.Add(clickable, name)
|
tab := aerc.tabs.Add(clickable, name)
|
||||||
aerc.tabs.Select(len(aerc.tabs.Tabs) - 1)
|
aerc.tabs.Select(len(aerc.tabs.Tabs) - 1)
|
||||||
|
@ -297,6 +305,10 @@ func (aerc *Aerc) ReplaceTab(tabSrc ui.Drawable, tabTarget ui.Drawable, name str
|
||||||
aerc.tabs.Replace(tabSrc, tabTarget, name)
|
aerc.tabs.Replace(tabSrc, tabTarget, name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (aerc *Aerc) MoveTab(i int) {
|
||||||
|
aerc.tabs.MoveTab(i)
|
||||||
|
}
|
||||||
|
|
||||||
func (aerc *Aerc) NextTab() {
|
func (aerc *Aerc) NextTab() {
|
||||||
aerc.tabs.NextTab()
|
aerc.tabs.NextTab()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue