I want to use VS Code (no alternative solution for me) for simple i18next localization of the browser extension (these are regular .json files in the "locales" directory). But the problem is this: when writing repeated text in the "message" section, predictive text input does not work (for example, as it is implemented in Notepad ++ or in Sublime Text with a plugin). The program contains the appropriate settings:
"editor.tabCompletion": "on",
"editor.wordBasedSuggestions": true,
"editor.wordBasedSuggestionsMode": "allDocuments",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.acceptSuggestionOnEnter": "on",
"editor.quickSuggestionsDelay": 10,
"editor.parameterHints.enabled": true
"All Autocomplete" extension works great in all cases except the above case.
The question is, are there any similar extensions/ methods/ settings to solve this little problem and improve printing performance.
Thanks.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…