tofulm
tofulm
if I change agnvim with ag => no error !!!
with the second example, vs codium does the transformation `(JOHN)`
> Oh, so it generates a placeholder, you type into it, and when you leave the transformation is applied? yes
with : ` update_events = 'TextChanged,TextChangedI' ` and width this snippet : ```lua "aa": { "prefix": "aa", "body": "$1 (${1/(.*)/${1:/upcase}/}) $0" }, ``` when i type : a => `...
I understand
@hawkinchina `aa": { "prefix": "aa", "body": "$1 (${1/(.*)/${1:/upcase}/}) $0" },` it's ok => `john (JOHN)` But `bb": { "prefix": "bb", "body": " (${1/(.*)/${1:/upcase}/}) $0" },` => `(john)` and not `(JOHN)`
With Ultisnips : ``` snippet aa "(JOHN)" `!p t[1] = t[1].upper() `(${1})${0}` endsnippet ```