Browse Source

Go fmt

pull/7/head
Gregory Rudolph 5 years ago
parent
commit
10ada5cd5f
  1. 1
      colors.go
  2. 6
      main.go
  3. 1
      userConfigs.go

1
colors.go

@ -18,6 +18,7 @@ func color(c int) string {
return fmt.Sprintf("\033[0;%dm", 29+c) return fmt.Sprintf("\033[0;%dm", 29+c)
} }
} }
// TODO maybe make the text into some datastructure which remembers the color // TODO maybe make the text into some datastructure which remembers the color
func colorText(text string, color string, offColor string) string { func colorText(text string, color string, offColor string) string {
return fmt.Sprintf("%s%s%s", color, text, offColor) return fmt.Sprintf("%s%s%s", color, text, offColor)

6
main.go

@ -143,7 +143,7 @@ func sendChat(message string) {
func formatOutput(api keybase.ChatAPI) string { func formatOutput(api keybase.ChatAPI) string {
ret := "" ret := ""
msgType := api.Msg.Content.Type msgType := api.Msg.Content.Type
switch (msgType) { switch msgType {
case "text", "attachment": case "text", "attachment":
var c = messageHeaderColor var c = messageHeaderColor
ret = colorText(outputFormat, c, noColor) ret = colorText(outputFormat, c, noColor)
@ -180,9 +180,9 @@ func populateList() {
} else { } else {
clearView("List") clearView("List")
var recentPMs = fmt.Sprintf("%s---[PMs]---%s\n", channelsHeaderColor, channelsColor); var recentPMs = fmt.Sprintf("%s---[PMs]---%s\n", channelsHeaderColor, channelsColor)
var recentPMsCount = 0 var recentPMsCount = 0
var recentChannels = fmt.Sprintf("%s---[Teams]---%s\n", channelsHeaderColor, channelsColor); var recentChannels = fmt.Sprintf("%s---[Teams]---%s\n", channelsHeaderColor, channelsColor)
var recentChannelsCount = 0 var recentChannelsCount = 0
for _, s := range testVar.Result.Conversations { for _, s := range testVar.Result.Conversations {
channels = append(channels, s.Channel) channels = append(channels, s.Channel)

1
userConfigs.go

@ -1,4 +1,5 @@
package main package main
// Path where Downloaded files will default to // Path where Downloaded files will default to
var downloadPath = "/tmp/" var downloadPath = "/tmp/"

Loading…
Cancel
Save