aboutsummaryrefslogtreecommitdiff
path: root/ui/commands.go
diff options
context:
space:
mode:
authorVishnunarayan K I <31964688+vn-ki@users.noreply.github.com>2018-07-02 12:30:42 +0530
committerTulir Asokan <tulir@maunium.net>2018-07-02 10:00:42 +0300
commit68db26bcace31297471641fe95f8882e301f5699 (patch)
tree77809244075380d292657b282b73d6cfa7a8eca0 /ui/commands.go
parentcf3f3e51d127f12b0d4b602cf446c1befde9cd79 (diff)
Emojify message (#65)
Diffstat (limited to 'ui/commands.go')
-rw-r--r--ui/commands.go11
1 files changed, 7 insertions, 4 deletions
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 <rooms/users/baremessages/images/typingnotif>")
+ cmd.Reply("Usage: /toggle <rooms/users/baremessages/images/typingnotif/emojis>")
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 <rooms/users/baremessages/images/typingnotif>")
+ cmd.Reply("Usage: /toggle <rooms/users/baremessages/images/typingnotif/emojis>")
return
}
// is there a reason this is called twice?