如何在 VSCode 中创建自定义命令来修改我的翻译文本?

How to create a custom command in VSCode to modify my text for translation?

必须在整个项目中进行本地化。 我必须从

更改项目中的每个文本
<p> Home </p>

 <p> {t("Home")} </p>

有没有绑定快捷方式的方法,以便在选择 Home 文本并按下绑定键时将其转换为所需格式。

定义以下键绑定:

{
  "key": "ctrl+i l",  // or other combo
  "command": "editor.action.insertSnippet",
  "when": "editorTextFocus",
  "args": {
    "snippet": "{t(\"$TM_SELECTED_TEXT\")}"
  }
}