S1D1T1
S1D1T1
what is an appropriate use for this? I currently react to changes in RichTextEditor using ```.onChanged(attributedString.string)``` for things like syntax highlighting and matching parenthesis. I thought it might be inefficient,...
I'd love to use .onKeyPress. As discussed [here](https://github.com/danielsaidi/RichTextKit/discussions/160#discussioncomment-9029999), under MacOS, that is never called in my app
I am exploring an adjacent feature - where text is some sort of clickable token, like a hashtag. I expect it to be difficult. For starters, I would want to...
@DominikBucher12 I'd be interested to see that. My use isn't for hashtags or mentions, but for a scripting environment, where a variable name is a token. Similar to how variables...
another UI model for handling a text token: address entry in Mail.app. You start out typing text, but when you complete a known address, it becomes an address object. it...
@DominikBucher12, to give a bigger picture, my app is a prompt authoring tool for AI image generation. It currently already supports syntax coloring, parentheses matching. My intention for variable tokens...
@DominikBucher12 Can you tell me more about this change, and textkit 2? I would like to assess whether this will fit my needs. I'm not familiar with textkit2 - I...