Created
January 31, 2025 16:26
-
-
Save smeech/083dd6c0a765f21a6af1eb4cbd2f8ca3 to your computer and use it in GitHub Desktop.
[Case insensitive + word: true] A case-insensitive trigger expansion with word: true functionality. Triggered by "example ????", "EXAMPLE ?????", "exaMPLe ????" etc. #espanso #regex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A case-insensitive trigger expansion with word: true functionality. | |
| # Triggered by "example ????", "EXAMPLE ?????", "exaMPLe ????" etc.: | |
| - regex: (?i)\bexample(?P<w>\W) | |
| replace: Something{{w}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment