vscode代码提示设置大小写不敏感
时间: 2024-04-18 16:21:15 浏览: 625
vscode中文版设置
在VS Code中,可以通过设置来实现代码提示的大小写不敏感。具体操作如下:
1. 打开VS Code,点击左侧的扩展图标(四个方块组成的图标)。
2. 在搜索框中输入 "settings",并选择 "Preferences: Open Settings (JSON)"。
3. 在打开的 settings.json 文件中,添加以下配置:
```json
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggest.filterGraceful": false,
"editor.suggestSelection": "first",
"editor.wordBasedSuggestions": false,
"editor.quickSuggestions": {
"strings": true
},
```
4. 保存文件并关闭。
这样设置后,VS Code的代码提示将会忽略大小写,提供更加灵活的自动补全功能。
阅读全文