Gofmt
This commit is contained in:
		@@ -17,11 +17,11 @@
 | 
			
		||||
package ui
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/debug"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"strings"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type gomuksPointerContainer struct {
 | 
			
		||||
 
 | 
			
		||||
@@ -17,9 +17,9 @@
 | 
			
		||||
package ui
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
	"maunium.net/go/gomuks/debug"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func cmdMe(cmd *Command) {
 | 
			
		||||
 
 | 
			
		||||
@@ -24,13 +24,13 @@ import (
 | 
			
		||||
	"strings"
 | 
			
		||||
 | 
			
		||||
	"github.com/mattn/go-runewidth"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/debug"
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"maunium.net/go/gomuks/lib/open"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/widget"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/tcell"
 | 
			
		||||
	"maunium.net/go/tview"
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
@@ -20,11 +20,11 @@ import (
 | 
			
		||||
	"encoding/gob"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/widget"
 | 
			
		||||
	"maunium.net/go/tcell"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
@@ -44,7 +44,7 @@ type BaseMessage struct {
 | 
			
		||||
	buffer          []tstring.TString
 | 
			
		||||
	plainBuffer     []tstring.TString
 | 
			
		||||
	prevBufferWidth int
 | 
			
		||||
	prevPrefs    config.UserPreferences
 | 
			
		||||
	prevPrefs       config.UserPreferences
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func newBaseMessage(id, sender, displayname, msgtype string, timestamp time.Time) BaseMessage {
 | 
			
		||||
 
 | 
			
		||||
@@ -20,8 +20,8 @@ import (
 | 
			
		||||
	"encoding/gob"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
@@ -37,7 +37,7 @@ type ExpandedTextMessage struct {
 | 
			
		||||
func NewExpandedTextMessage(id, sender, displayname, msgtype string, text tstring.TString, timestamp time.Time) UIMessage {
 | 
			
		||||
	return &ExpandedTextMessage{
 | 
			
		||||
		BaseMessage: newBaseMessage(id, sender, displayname, msgtype, timestamp),
 | 
			
		||||
		MsgText:         text,
 | 
			
		||||
		MsgText:     text,
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -24,12 +24,12 @@ import (
 | 
			
		||||
 | 
			
		||||
	"image/color"
 | 
			
		||||
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/debug"
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"maunium.net/go/gomuks/lib/ansimage"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"maunium.net/go/tcell"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
@@ -38,7 +38,7 @@ func init() {
 | 
			
		||||
 | 
			
		||||
type ImageMessage struct {
 | 
			
		||||
	BaseMessage
 | 
			
		||||
	Body string
 | 
			
		||||
	Body       string
 | 
			
		||||
	Homeserver string
 | 
			
		||||
	FileID     string
 | 
			
		||||
	data       []byte
 | 
			
		||||
 
 | 
			
		||||
@@ -17,9 +17,9 @@
 | 
			
		||||
package messages
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// UIMessage is a wrapper for the content and metadata of a Matrix message intended to be displayed.
 | 
			
		||||
 
 | 
			
		||||
@@ -22,12 +22,12 @@ import (
 | 
			
		||||
	"regexp"
 | 
			
		||||
	"strings"
 | 
			
		||||
 | 
			
		||||
	"golang.org/x/net/html"
 | 
			
		||||
	"maunium.net/go/gomatrix"
 | 
			
		||||
	"maunium.net/go/gomuks/matrix/rooms"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/widget"
 | 
			
		||||
	"maunium.net/go/tcell"
 | 
			
		||||
	"golang.org/x/net/html"
 | 
			
		||||
	"strconv"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@@ -68,7 +68,7 @@ func (parser *htmlParser) getAttribute(node *html.Node, attribute string) string
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func digits(num int) int {
 | 
			
		||||
	return int(math.Floor(math.Log10(float64(num)))+1)
 | 
			
		||||
	return int(math.Floor(math.Log10(float64(num))) + 1)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (parser *htmlParser) listToTString(node *html.Node, stripLinebreak bool) tstring.TString {
 | 
			
		||||
 
 | 
			
		||||
@@ -147,7 +147,7 @@ func getMembershipEventContent(room *rooms.Room, evt *gomatrix.Event) (sender st
 | 
			
		||||
		text = tstring.NewColorTString(fmt.Sprintf("%s changed their display name to %s.", prevDisplayname, displayname), tcell.ColorGreen)
 | 
			
		||||
		color := widget.GetHashColor(*evt.StateKey)
 | 
			
		||||
		text.Colorize(0, len(prevDisplayname), color)
 | 
			
		||||
		text.Colorize(len(prevDisplayname) + len(" changed their display name to "), len(displayname), color)
 | 
			
		||||
		text.Colorize(len(prevDisplayname)+len(" changed their display name to "), len(displayname), color)
 | 
			
		||||
	}
 | 
			
		||||
	return
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -17,19 +17,19 @@
 | 
			
		||||
package messages
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"regexp"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"regexp"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Regular expressions used to split lines when calculating the buffer.
 | 
			
		||||
//
 | 
			
		||||
// From tview/textview.go
 | 
			
		||||
var (
 | 
			
		||||
	boundaryPattern = regexp.MustCompile(`([[:punct:]]\s*|\s+)`)
 | 
			
		||||
	boundaryPattern     = regexp.MustCompile(`([[:punct:]]\s*|\s+)`)
 | 
			
		||||
	bareBoundaryPattern = regexp.MustCompile(`(\s+)`)
 | 
			
		||||
	spacePattern    = regexp.MustCompile(`\s+`)
 | 
			
		||||
	spacePattern        = regexp.MustCompile(`\s+`)
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func matchBoundaryPattern(bare bool, extract tstring.TString) tstring.TString {
 | 
			
		||||
 
 | 
			
		||||
@@ -21,9 +21,9 @@ import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"maunium.net/go/gomuks/ui/messages/tstring"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
@@ -40,7 +40,7 @@ type TextMessage struct {
 | 
			
		||||
func NewTextMessage(id, sender, displayname, msgtype, text string, timestamp time.Time) UIMessage {
 | 
			
		||||
	return &TextMessage{
 | 
			
		||||
		BaseMessage: newBaseMessage(id, sender, displayname, msgtype, timestamp),
 | 
			
		||||
		MsgText:         text,
 | 
			
		||||
		MsgText:     text,
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -108,7 +108,7 @@ func (str TString) TrimLeft(fn func(rune) bool) TString {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (str TString) TrimRight(fn func(rune) bool) TString {
 | 
			
		||||
	for i := len(str)-1; i >= 0; i-- {
 | 
			
		||||
	for i := len(str) - 1; i >= 0; i-- {
 | 
			
		||||
		if !fn(str[i].Char) {
 | 
			
		||||
			return append(NewBlankTString(), str[:i+1]...)
 | 
			
		||||
		}
 | 
			
		||||
 
 | 
			
		||||
@@ -25,6 +25,7 @@ import (
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"github.com/mattn/go-runewidth"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/interface"
 | 
			
		||||
	"maunium.net/go/gomuks/lib/util"
 | 
			
		||||
	"maunium.net/go/gomuks/matrix/rooms"
 | 
			
		||||
@@ -32,7 +33,6 @@ import (
 | 
			
		||||
	"maunium.net/go/gomuks/ui/widget"
 | 
			
		||||
	"maunium.net/go/tcell"
 | 
			
		||||
	"maunium.net/go/tview"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type RoomView struct {
 | 
			
		||||
@@ -154,7 +154,7 @@ func (view *RoomView) GetStatus() string {
 | 
			
		||||
	var buf strings.Builder
 | 
			
		||||
 | 
			
		||||
	if len(view.completions.list) > 0 {
 | 
			
		||||
		if view.completions.textCache != view.input.GetText() || view.completions.time.Add(10 * time.Second).Before(time.Now()) {
 | 
			
		||||
		if view.completions.textCache != view.input.GetText() || view.completions.time.Add(10*time.Second).Before(time.Now()) {
 | 
			
		||||
			view.completions.list = []string{}
 | 
			
		||||
		} else {
 | 
			
		||||
			buf.WriteString(strings.Join(view.completions.list, ", "))
 | 
			
		||||
 
 | 
			
		||||
@@ -21,6 +21,7 @@ import (
 | 
			
		||||
	"time"
 | 
			
		||||
	"unicode"
 | 
			
		||||
 | 
			
		||||
	"bufio"
 | 
			
		||||
	"maunium.net/go/gomatrix"
 | 
			
		||||
	"maunium.net/go/gomuks/config"
 | 
			
		||||
	"maunium.net/go/gomuks/debug"
 | 
			
		||||
@@ -32,7 +33,6 @@ import (
 | 
			
		||||
	"maunium.net/go/gomuks/ui/widget"
 | 
			
		||||
	"maunium.net/go/tcell"
 | 
			
		||||
	"maunium.net/go/tview"
 | 
			
		||||
	"bufio"
 | 
			
		||||
	"os"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user