vscode-extensions

Custom Extension for JSON Completion Does Not Work in Double Quotes

大兔子大兔子 提交于 2020-12-12 13:21:45
问题 I'm developing a VSCode extension that should enhance JSON editing with additional code completion. Therefore I added four dummy suggestions ( foo , foo1 , foo2 , foo3 ) to start testing. When typing a colon after a JSON key it works as expected: Also when I trigger completion in an empty object it works as I want it (including suggestions from other extensions): However when I trigger completion within double quotes (no matter if they contain text or not) my suggestions are missing: When I

Custom Extension for JSON Completion Does Not Work in Double Quotes

心已入冬 提交于 2020-12-12 13:21:04
问题 I'm developing a VSCode extension that should enhance JSON editing with additional code completion. Therefore I added four dummy suggestions ( foo , foo1 , foo2 , foo3 ) to start testing. When typing a colon after a JSON key it works as expected: Also when I trigger completion in an empty object it works as I want it (including suggestions from other extensions): However when I trigger completion within double quotes (no matter if they contain text or not) my suggestions are missing: When I

Custom Extension for JSON Completion Does Not Work in Double Quotes

流过昼夜 提交于 2020-12-12 13:20:55
问题 I'm developing a VSCode extension that should enhance JSON editing with additional code completion. Therefore I added four dummy suggestions ( foo , foo1 , foo2 , foo3 ) to start testing. When typing a colon after a JSON key it works as expected: Also when I trigger completion in an empty object it works as I want it (including suggestions from other extensions): However when I trigger completion within double quotes (no matter if they contain text or not) my suggestions are missing: When I