未验证 提交 9cedc683 编写于 作者: J Johannes Rieken 提交者: GitHub

Merge pull request #73477 from microsoft/joh/72728

allow empty string to be inserted...
......@@ -369,7 +369,7 @@ export class MainThreadLanguageFeatures implements MainThreadLanguageFeaturesSha
sortText: data.e,
filterText: data.f,
preselect: data.g,
insertText: data.h || data.a,
insertText: typeof data.h === 'undefined' ? data.a : data.h,
insertTextRules: data.i,
range: data.j || defaultRange,
commitCharacters: data.k,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册