-
Notifications
You must be signed in to change notification settings - Fork 120
Custom text replaces
RadRussianRus edited this page Feb 1, 2020
·
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 works only when "Replace emoji" option is enabled (Settings > Chat Settings). An option to disable only default replaces but not custom, is considered but not done yet.
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"]
]
}