标签: visual-studio-code
只是想知道是否存在使用模板字符串添加intellsense的选项。目前,如果我有一个简单的代码块
let foo = fooValue === 'foo one' : 'foo two'; this.fooComponent(`this is a message for ${foo}`);
我没有明智地输入${,我希望{i} foo可以选择f,因为我在字符串之外的正常代码中输入{{1}}。
${
foo
f
答案 0 :(得分:2)
VSCodes完全支持JavaScript和TypeScript字符串中的intellisense,但它不会自动触发。您必须使用默认情况下绑定到 ctrl space 的editor.action.triggerSuggest命令:
editor.action.triggerSuggest