-
Notifications
You must be signed in to change notification settings - Fork 121
Custom text replaces
Eric Kotato edited this page Nov 28, 2024
·
5 revisions
Custom text replaces is the JSON settings feature that allows you to set your own text replaces, such as :shrug:
to ¯\_(ツ)_/¯
. Feature has been added in Kotatogram 1.1.6.
Note: this feature worked only when "Replace emoji" option is enabled (Settings > Chat Settings) on 1.4.5 or lower. Since 1.4.6 you can use it without "Replace emoji" option.
Add or find "replaces" option, it should be an array. To add a replace, you should add a subarray, where first item is text that you are typing, and second is the result of replacement.
{
"replaces": []
}
This will add replacement from start
to starting
.
{
"replaces": [
["start", "starting"]
]
}
This will add replacement from pot
to potato
, and from cat
to cotato
.
{
"replaces": [
["pot", "potato"],
["cat", "cotato"]
]
}