Remove extra braces around settings to make settings easily copy-and-pastable

uıɐɾ ʞ ʇɐɯɐs 2019-02-08 21:43:30 -08:00 committed by Fangrui Song
parent e80455946a
commit 3e2509c840

@ -99,12 +99,10 @@ So you could hit `<space>-t` to see callees up to 3rd level if you set `<leader>
The `vscode-ccls` extension doesn't provide any debugger integration. One popular option is to use the [vscode-cpptools](https://github.com/Microsoft/vscode-cpptools) extension for this aspect. By default however, `vscode-cpptools` provides editor features that overlap with CQuery, which yields duplicate results in things like autocomplete. The following settings may be applied to disable the editor support of `vscode-cpptools` to prevent this from happening, while still retaining the debugger features. The `vscode-ccls` extension doesn't provide any debugger integration. One popular option is to use the [vscode-cpptools](https://github.com/Microsoft/vscode-cpptools) extension for this aspect. By default however, `vscode-cpptools` provides editor features that overlap with CQuery, which yields duplicate results in things like autocomplete. The following settings may be applied to disable the editor support of `vscode-cpptools` to prevent this from happening, while still retaining the debugger features.
```json ```json
{ "C_Cpp.autocomplete": "Disabled",
"C_Cpp.autocomplete": "Disabled", "C_Cpp.formatting": "Disabled",
"C_Cpp.formatting": "Disabled", "C_Cpp.errorSquiggles": "Disabled",
"C_Cpp.errorSquiggles": "Disabled", "C_Cpp.intelliSenseEngine": "Disabled",
"C_Cpp.intelliSenseEngine": "Disabled",
}
``` ```
### Semantic Navigation ### Semantic Navigation