go.mod: change base git url

I'm not sure what are the implications but it seems required.

Link: https://github.com/golang/go/issues/20883
Signed-off-by: Robin Jarry <robin@jarry.cc>
This commit is contained in:
Robin Jarry 2021-11-05 10:19:46 +01:00
parent b2e9df623f
commit 0d645bcebd
126 changed files with 255 additions and 255 deletions

View File

@ -3,7 +3,7 @@ packages:
- go - go
- scdoc - scdoc
sources: sources:
- https://git.sr.ht/~sircmpwn/aerc - https://git.sr.ht/~rjarry/aerc
tasks: tasks:
- build: | - build: |
cd aerc cd aerc

22
aerc.go
View File

@ -14,17 +14,17 @@ import (
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
"github.com/mattn/go-isatty" "github.com/mattn/go-isatty"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/commands/account" "git.sr.ht/~rjarry/aerc/commands/account"
"git.sr.ht/~sircmpwn/aerc/commands/compose" "git.sr.ht/~rjarry/aerc/commands/compose"
"git.sr.ht/~sircmpwn/aerc/commands/msg" "git.sr.ht/~rjarry/aerc/commands/msg"
"git.sr.ht/~sircmpwn/aerc/commands/msgview" "git.sr.ht/~rjarry/aerc/commands/msgview"
"git.sr.ht/~sircmpwn/aerc/commands/terminal" "git.sr.ht/~rjarry/aerc/commands/terminal"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/templates" "git.sr.ht/~rjarry/aerc/lib/templates"
libui "git.sr.ht/~sircmpwn/aerc/lib/ui" libui "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
func getCommands(selected libui.Drawable) []*commands.Commands { func getCommands(selected libui.Drawable) []*commands.Commands {

View File

@ -1,7 +1,7 @@
package account package account
import ( import (
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
) )
var ( var (

View File

@ -4,8 +4,8 @@ import (
"errors" "errors"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
var ( var (

View File

@ -2,7 +2,7 @@ package account
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"time" "time"
) )

View File

@ -5,8 +5,8 @@ import (
"regexp" "regexp"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
) )

View File

@ -5,8 +5,8 @@ import (
"strings" "strings"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type MakeDir struct{} type MakeDir struct{}

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"strconv" "strconv"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type NextPrevFolder struct{} type NextPrevFolder struct{}

View File

@ -4,7 +4,7 @@ import (
"errors" "errors"
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type NextPrevResult struct{} type NextPrevResult struct{}

View File

@ -6,7 +6,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type NextPrevMsg struct{} type NextPrevMsg struct{}

View File

@ -6,8 +6,8 @@ import (
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type RemoveDir struct{} type RemoveDir struct{}

View File

@ -3,7 +3,7 @@ package account
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type SearchFilter struct{} type SearchFilter struct{}

View File

@ -4,7 +4,7 @@ import (
"errors" "errors"
"strconv" "strconv"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type SelectMessage struct{} type SelectMessage struct{}

View File

@ -4,8 +4,8 @@ import (
"errors" "errors"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/lib/sort" "git.sr.ht/~rjarry/aerc/lib/sort"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Sort struct{} type Sort struct{}

View File

@ -3,8 +3,8 @@ package account
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type ViewMessage struct{} type ViewMessage struct{}

View File

@ -5,7 +5,7 @@ import (
"os" "os"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"github.com/mitchellh/go-homedir" "github.com/mitchellh/go-homedir"
) )

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Choose struct{} type Choose struct{}

View File

@ -9,7 +9,7 @@ import (
"github.com/google/shlex" "github.com/google/shlex"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Command interface { type Command interface {

View File

@ -3,7 +3,7 @@ package compose
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Abort struct{} type Abort struct{}

View File

@ -5,8 +5,8 @@ import (
"os" "os"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"github.com/mitchellh/go-homedir" "github.com/mitchellh/go-homedir"
) )

View File

@ -3,7 +3,7 @@ package compose
import ( import (
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type CC struct{} type CC struct{}

View File

@ -1,7 +1,7 @@
package compose package compose
import ( import (
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
) )
var ( var (

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Detach struct{} type Detach struct{}

View File

@ -3,7 +3,7 @@ package compose
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Edit struct{} type Edit struct{}

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
) )

View File

@ -3,7 +3,7 @@ package compose
import ( import (
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type NextPrevField struct{} type NextPrevField struct{}

View File

@ -8,9 +8,9 @@ import (
"github.com/miolini/datacounter" "github.com/miolini/datacounter"
"github.com/pkg/errors" "github.com/pkg/errors"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type Postpone struct{} type Postpone struct{}

View File

@ -15,10 +15,10 @@ import (
"github.com/google/shlex" "github.com/google/shlex"
"github.com/pkg/errors" "github.com/pkg/errors"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
"github.com/emersion/go-message/mail" "github.com/emersion/go-message/mail"
"golang.org/x/oauth2" "golang.org/x/oauth2"
) )

View File

@ -6,7 +6,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type ChangeTab struct{} type ChangeTab struct{}

View File

@ -7,7 +7,7 @@ import (
"os/exec" "os/exec"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type ExecCmd struct{} type ExecCmd struct{}

View File

@ -3,7 +3,7 @@ package commands
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Help struct{} type Help struct{}

View File

@ -5,7 +5,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type MoveTab struct{} type MoveTab struct{}

View File

@ -7,10 +7,10 @@ import (
"sync" "sync"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
const ( const (

View File

@ -7,9 +7,9 @@ import (
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type Copy struct{} type Copy struct{}

View File

@ -4,10 +4,10 @@ import (
"errors" "errors"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type Delete struct{} type Delete struct{}

View File

@ -10,11 +10,11 @@ import (
"path" "path"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/format" "git.sr.ht/~rjarry/aerc/lib/format"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
"github.com/emersion/go-message/mail" "github.com/emersion/go-message/mail"
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"

View File

@ -3,7 +3,7 @@ package msg
import ( import (
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
) )

View File

@ -4,9 +4,9 @@ import (
"errors" "errors"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type ModifyLabels struct{} type ModifyLabels struct{}

View File

@ -7,9 +7,9 @@ import (
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type Move struct{} type Move struct{}

View File

@ -1,7 +1,7 @@
package msg package msg
import ( import (
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
) )
var ( var (

View File

@ -7,9 +7,9 @@ import (
"os/exec" "os/exec"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
) )

View File

@ -7,10 +7,10 @@ import (
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type FlagMsg struct{} type FlagMsg struct{}

View File

@ -8,10 +8,10 @@ import (
"github.com/emersion/go-message/mail" "github.com/emersion/go-message/mail"
"github.com/pkg/errors" "github.com/pkg/errors"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type Recall struct{} type Recall struct{}

View File

@ -9,10 +9,10 @@ import (
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/format" "git.sr.ht/~rjarry/aerc/lib/format"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"github.com/emersion/go-message/mail" "github.com/emersion/go-message/mail"
) )

View File

@ -6,9 +6,9 @@ import (
"net/url" "net/url"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"github.com/emersion/go-message/mail" "github.com/emersion/go-message/mail"
) )

View File

@ -3,10 +3,10 @@ package msg
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type helper struct { type helper struct {

View File

@ -3,7 +3,7 @@ package msgview
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Close struct{} type Close struct{}

View File

@ -1,7 +1,7 @@
package msgview package msgview
import ( import (
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
) )
var ( var (

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"strconv" "strconv"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type NextPrevPart struct{} type NextPrevPart struct{}

View File

@ -1,9 +1,9 @@
package msgview package msgview
import ( import (
"git.sr.ht/~sircmpwn/aerc/commands/account" "git.sr.ht/~rjarry/aerc/commands/account"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type NextPrevMsg struct{} type NextPrevMsg struct{}

View File

@ -8,8 +8,8 @@ import (
"os" "os"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Open struct{} type Open struct{}

View File

@ -12,9 +12,9 @@ import (
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
"github.com/mitchellh/go-homedir" "github.com/mitchellh/go-homedir"
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Save struct{} type Save struct{}

View File

@ -3,7 +3,7 @@ package msgview
import ( import (
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type ToggleHeaders struct{} type ToggleHeaders struct{}

View File

@ -3,7 +3,7 @@ package commands
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/getopt" "git.sr.ht/~sircmpwn/getopt"
) )

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"strconv" "strconv"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type NextPrevTab struct{} type NextPrevTab struct{}

View File

@ -3,7 +3,7 @@ package commands
import ( import (
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type PinTab struct{} type PinTab struct{}

View File

@ -3,7 +3,7 @@ package commands
import ( import (
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Prompt struct{} type Prompt struct{}

View File

@ -5,7 +5,7 @@ import (
"os" "os"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type PrintWorkDir struct{} type PrintWorkDir struct{}

View File

@ -3,7 +3,7 @@ package commands
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Quit struct{} type Quit struct{}

View File

@ -4,7 +4,7 @@ import (
"errors" "errors"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"github.com/go-ini/ini" "github.com/go-ini/ini"
) )

View File

@ -5,7 +5,7 @@ import (
"github.com/riywo/loginshell" "github.com/riywo/loginshell"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Term struct{} type Term struct{}

View File

@ -3,7 +3,7 @@ package terminal
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
) )
type Close struct{} type Close struct{}

View File

@ -1,7 +1,7 @@
package terminal package terminal
import ( import (
"git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~rjarry/aerc/commands"
) )
var ( var (

View File

@ -10,9 +10,9 @@ import (
"strings" "strings"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~rjarry/aerc/widgets"
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"github.com/mitchellh/go-homedir" "github.com/mitchellh/go-homedir"
) )

View File

@ -19,7 +19,7 @@ import (
"github.com/imdario/mergo" "github.com/imdario/mergo"
"github.com/kyoh86/xdg" "github.com/kyoh86/xdg"
"git.sr.ht/~sircmpwn/aerc/lib/templates" "git.sr.ht/~rjarry/aerc/lib/templates"
) )
type GeneralConfig struct { type GeneralConfig struct {

View File

@ -6,8 +6,8 @@ import (
"github.com/google/shlex" "github.com/google/shlex"
"git.sr.ht/~sircmpwn/aerc/lib/format" "git.sr.ht/~rjarry/aerc/lib/format"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
func (trig *TriggersConfig) ExecTrigger(triggerCmd string, func (trig *TriggersConfig) ExecTrigger(triggerCmd string,

View File

@ -650,4 +650,4 @@ following special keys are supported:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -69,4 +69,4 @@ available:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -37,4 +37,4 @@ The following maildir-specific options are available:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -72,4 +72,4 @@ Others are slightly different in semantics and mentioned below:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -28,4 +28,4 @@ options are available:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -69,4 +69,4 @@ available:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -152,4 +152,4 @@ aerc provides the following additional functions:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -152,4 +152,4 @@ change its appearance and behavior, and so on.
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

View File

@ -407,4 +407,4 @@ write log messages to that file:
Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
source contributors. For more information about aerc development, see source contributors. For more information about aerc development, see
https://git.sr.ht/~sircmpwn/aerc. https://git.sr.ht/~rjarry/aerc.

2
go.mod
View File

@ -1,4 +1,4 @@
module git.sr.ht/~sircmpwn/aerc module git.sr.ht/~rjarry/aerc
go 1.13 go 1.13

View File

@ -8,7 +8,7 @@ import (
"time" "time"
"unicode" "unicode"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"github.com/emersion/go-message/mail" "github.com/emersion/go-message/mail"
) )

View File

@ -10,9 +10,9 @@ import (
"github.com/emersion/go-pgpmail" "github.com/emersion/go-pgpmail"
"golang.org/x/crypto/openpgp" "golang.org/x/crypto/openpgp"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/worker/lib" "git.sr.ht/~rjarry/aerc/worker/lib"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
// This is an abstraction for viewing a message with semi-transparent PGP // This is an abstraction for viewing a message with semi-transparent PGP

View File

@ -4,9 +4,9 @@ import (
"io" "io"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/lib/sort" "git.sr.ht/~rjarry/aerc/lib/sort"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
// Accesses to fields must be guarded by MessageStore.Lock/Unlock // Accesses to fields must be guarded by MessageStore.Lock/Unlock

View File

@ -6,7 +6,7 @@ import (
"sort" "sort"
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
func GetSortCriteria(args []string) ([]*types.SortCriterion, error) { func GetSortCriteria(args []string) ([]*types.SortCriterion, error) {

View File

@ -3,7 +3,7 @@ package lib
import ( import (
"strings" "strings"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
func FindPlaintext(bs *models.BodyStructure, path []int) []int { func FindPlaintext(bs *models.BodyStructure, path []int) []int {

View File

@ -13,7 +13,7 @@ import (
"github.com/emersion/go-message/mail" "github.com/emersion/go-message/mail"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"github.com/mitchellh/go-homedir" "github.com/mitchellh/go-homedir"
) )

View File

@ -3,7 +3,7 @@ package ui
import ( import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
) )
const ( const (

View File

@ -3,7 +3,7 @@ package ui
import ( import (
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
) )

View File

@ -6,7 +6,7 @@ import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"github.com/mattn/go-runewidth" "github.com/mattn/go-runewidth"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
) )
type Tabs struct { type Tabs struct {

View File

@ -7,7 +7,7 @@ import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"github.com/mattn/go-runewidth" "github.com/mattn/go-runewidth"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
) )
// TODO: Attach history providers // TODO: Attach history providers

View File

@ -15,8 +15,8 @@ import (
"github.com/go-ini/ini" "github.com/go-ini/ini"
"github.com/kyoh86/xdg" "github.com/kyoh86/xdg"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
) )
const ( const (

View File

@ -7,13 +7,13 @@ import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/sort" "git.sr.ht/~rjarry/aerc/lib/sort"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/worker" "git.sr.ht/~rjarry/aerc/worker"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
var _ ProvidesMessages = (*AccountView)(nil) var _ ProvidesMessages = (*AccountView)(nil)

View File

@ -14,10 +14,10 @@ import (
"github.com/google/shlex" "github.com/google/shlex"
"golang.org/x/crypto/openpgp" "golang.org/x/crypto/openpgp"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
type Aerc struct { type Aerc struct {

View File

@ -3,8 +3,8 @@ package widgets
import ( import (
"fmt" "fmt"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
func msgInfoFromUids(store *lib.MessageStore, uids []uint32) ([]*models.MessageInfo, error) { func msgInfoFromUids(store *lib.MessageStore, uids []uint32) ([]*models.MessageInfo, error) {

View File

@ -21,13 +21,13 @@ import (
"github.com/mitchellh/go-homedir" "github.com/mitchellh/go-homedir"
"github.com/pkg/errors" "github.com/pkg/errors"
"git.sr.ht/~sircmpwn/aerc/completer" "git.sr.ht/~rjarry/aerc/completer"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib/format" "git.sr.ht/~rjarry/aerc/lib/format"
"git.sr.ht/~sircmpwn/aerc/lib/templates" "git.sr.ht/~rjarry/aerc/lib/templates"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type Composer struct { type Composer struct {

View File

@ -10,12 +10,12 @@ import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"github.com/mattn/go-runewidth" "github.com/mattn/go-runewidth"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
libsort "git.sr.ht/~sircmpwn/aerc/lib/sort" libsort "git.sr.ht/~rjarry/aerc/lib/sort"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~sircmpwn/aerc/worker/types" "git.sr.ht/~rjarry/aerc/worker/types"
) )
type DirectoryList struct { type DirectoryList struct {

View File

@ -3,9 +3,9 @@ package widgets
import ( import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
) )
type ExLine struct { type ExLine struct {

View File

@ -5,8 +5,8 @@ import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
) )
type GetPasswd struct { type GetPasswd struct {

View File

@ -1,8 +1,8 @@
package widgets package widgets
import ( import (
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
type HeaderLayout [][]string type HeaderLayout [][]string

View File

@ -8,11 +8,11 @@ import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"github.com/mattn/go-runewidth" "github.com/mattn/go-runewidth"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/format" "git.sr.ht/~rjarry/aerc/lib/format"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
type MessageList struct { type MessageList struct {

View File

@ -15,11 +15,11 @@ import (
"github.com/google/shlex" "github.com/google/shlex"
"github.com/mattn/go-runewidth" "github.com/mattn/go-runewidth"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/format" "git.sr.ht/~rjarry/aerc/lib/format"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
var ansi = regexp.MustCompile("\x1B\\[[0-?]*[ -/]*[@-~]") var ansi = regexp.MustCompile("\x1B\\[[0-?]*[ -/]*[@-~]")

View File

@ -3,8 +3,8 @@ package widgets
import ( import (
"errors" "errors"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"golang.org/x/crypto/openpgp" "golang.org/x/crypto/openpgp"
pgperrors "golang.org/x/crypto/openpgp/errors" pgperrors "golang.org/x/crypto/openpgp/errors"

View File

@ -1,9 +1,9 @@
package widgets package widgets
import ( import (
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
"git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~rjarry/aerc/models"
) )
type PartInfo struct { type PartInfo struct {

View File

@ -3,8 +3,8 @@ package widgets
import ( import (
"github.com/gdamore/tcell/v2" "github.com/gdamore/tcell/v2"
"git.sr.ht/~sircmpwn/aerc/config" "git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/ui"
) )
type Selector struct { type Selector struct {

Some files were not shown because too many files have changed in this diff Show More