VS Code: How to convert snippet placeholder to uppercase or lowercase?

后端 未结 3 1299
囚心锁ツ
囚心锁ツ 2021-02-01 20:54

In VS Code, the docs for creating user defined snippets mentions some Grammar which includes options for /upcase, /downcase, and /capitalize

3条回答
  •  温柔的废话
    2021-02-01 21:06

    Try this:

    "test": {
        "prefix": "test",
        // "body": "${1} -> ${1/(.*)/${1:/upcase}/} > ${1/(.*)/${1:/downcase}/}"
        // simpler version below works too
        "body": "${1} -> ${1/(.*)/${1:/upcase} ${1:/downcase}/}"
    }
    

    You need to hit Tab to apply the transformation.

提交回复
热议问题