From 68db26bcace31297471641fe95f8882e301f5699 Mon Sep 17 00:00:00 2001 From: Vishnunarayan K I <31964688+vn-ki@users.noreply.github.com> Date: Mon, 2 Jul 2018 12:30:42 +0530 Subject: Emojify message (#65) --- ui/commands.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'ui/commands.go') diff --git a/ui/commands.go b/ui/commands.go index 60ab1f1..2827666 100644 --- a/ui/commands.go +++ b/ui/commands.go @@ -19,10 +19,11 @@ package ui import ( "encoding/json" "fmt" - "github.com/lucasb-eyer/go-colorful" - "maunium.net/go/gomuks/debug" "strings" "unicode" + + "github.com/lucasb-eyer/go-colorful" + "maunium.net/go/gomuks/debug" ) func cmdMe(cmd *Command) { @@ -184,7 +185,7 @@ func cmdSetState(cmd *Command) { func cmdToggle(cmd *Command) { if len(cmd.Args) == 0 { - cmd.Reply("Usage: /toggle ") + cmd.Reply("Usage: /toggle ") return } switch cmd.Args[0] { @@ -198,8 +199,10 @@ func cmdToggle(cmd *Command) { cmd.Config.Preferences.DisableImages = !cmd.Config.Preferences.DisableImages case "typingnotif": cmd.Config.Preferences.DisableTypingNotifs = !cmd.Config.Preferences.DisableTypingNotifs + case "emojis": + cmd.Config.Preferences.DisableEmojis = !cmd.Config.Preferences.DisableEmojis default: - cmd.Reply("Usage: /toggle ") + cmd.Reply("Usage: /toggle ") return } // is there a reason this is called twice? -- cgit v1.2.3