mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 15:40:27 +00:00
Add remotenickformat-zerowidth.tengo to contrib (#799)
This commit is contained in:
parent
4db34b0506
commit
220485a849
16
contrib/remotenickformat-zerowidth.tengo
Normal file
16
contrib/remotenickformat-zerowidth.tengo
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
This script will return the nick except with multi-character usernames
|
||||||
|
containing a zero-width space between the first and second character letter.
|
||||||
|
|
||||||
|
Single character usernames will be left untouched.
|
||||||
|
|
||||||
|
This is useful to prevent remote users from nickalerting
|
||||||
|
IRC users of the same name when the remote user speaks.
|
||||||
|
|
||||||
|
This result can be used in {TENGO} in RemoteNickFormat.
|
||||||
|
*/
|
||||||
|
|
||||||
|
result = nick
|
||||||
|
if len(nick) > 1 {
|
||||||
|
result = string(nick[0]) + "" + nick[1:]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user