VS 代码中多行字符串中的代码完成
Code Completion in Multiline Strings in VS Code
每当我尝试在 TypeScript 中使用反引号在多行字符串中编写 html 代码时,VS Code 不会 auto-complete html 标记。
例如:
@Component({
selector: 'app-property-binding',
template:`
<h1></h1>
`,
styles: [
]
})
我必须手动编写 header 标签。 VS Code 不提供自动完成功能。
有没有办法将其添加到 VS Code 中?
您需要在设置中执行此操作:
"emmet.includeLanguages": {
"typescript": "javascriptreact"
},
见https://code.visualstudio.com/docs/editor/emmet#_emmet-abbreviations-in-other-file-types
每当我尝试在 TypeScript 中使用反引号在多行字符串中编写 html 代码时,VS Code 不会 auto-complete html 标记。 例如:
@Component({
selector: 'app-property-binding',
template:`
<h1></h1>
`,
styles: [
]
})
我必须手动编写 header 标签。 VS Code 不提供自动完成功能。
有没有办法将其添加到 VS Code 中?
您需要在设置中执行此操作:
"emmet.includeLanguages": {
"typescript": "javascriptreact"
},
见https://code.visualstudio.com/docs/editor/emmet#_emmet-abbreviations-in-other-file-types