devopsinthecloud
devopsinthecloud copied to clipboard
Mentions not displaying while using CharacterSet
Hi, I have problem with triggering mention using CharacterSet(charactersIn: "@").
let mentionsPlugin = HKWMentionsPlugin(chooserMode: .enclosedTop, controlCharacters: CharacterSet(charactersIn: "@"), searchLength: -1)
Result: not triggering mention at all
let mentionsPlugin = HKWMentionsPlugin(chooserMode: .enclosedTop, controlCharacters: CharacterSet(charactersIn: "@"), searchLength: 0)
Result: not triggering mention at all
let mentionsPlugin = HKWMentionsPlugin(chooserMode: .enclosedTop, controlCharacters: CharacterSet(charactersIn: "@"), searchLength: 1)
Result: triggering mention without typing "@".
If i type "@" and then start typing mention it triggers mention but leaves "@" - "@[mention]".
Did anyone experience this?
yes I also have same issue