带有vscode的模板字符串中的Intellisense

时间:2017-06-30 09:16:24

标签: visual-studio-code

只是想知道是否存在使用模板字符串添加intellsense的选项。目前,如果我有一个简单的代码块

let foo = fooValue === 'foo one' : 'foo two';
this.fooComponent(`this is a message for ${foo}`);

我没有明智地输入${,我希望{i} foo可以选择f,因为我在字符串之外的正常代码中输入{{1}}。

1 个答案:

答案 0 :(得分:2)

VSCodes完全支持JavaScript和TypeScript字符串中的intellisense,但它不会自动触发。您必须使用默认情况下绑定到 ctrl space editor.action.triggerSuggest命令:

enter image description here