You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The upper method can convert all characters in the string into upper case:
"string".upper()
'STRING'
I want to write a small snippets to convert the trigger_word into it's upper case in html file.Add the below lines in vim-snippets/UltiSnips\html.snippets.
string can expand into STRING when to edit html file,how can make any other string be expanded into it's uppercase status?For example,otherstring expanded into OTHERSTRING?If i get the way to get trigger_word as a variable ,then it's simple to convert in calling python.
The text was updated successfully, but these errors were encountered:
The syntax of UltiSnips's snippet is as below:
The upper method can convert all characters in the string into upper case:
I want to write a small snippets to convert the trigger_word into it's upper case in html file.Add the below lines in
vim-snippets/UltiSnips\html.snippets
.string
can expand intoSTRING
when to edit html file,how can make any other string be expanded into it's uppercase status?For example,otherstring
expanded intoOTHERSTRING
?If i get the way to get trigger_word as a variable ,then it's simple to convert in calling python.The text was updated successfully, but these errors were encountered: