From 3e2509c8402deee00bc130e6ad61020bcf8fe934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?u=C4=B1=C9=90=C9=BE=20=CA=9E=20=CA=87=C9=90=C9=AF=C9=90s?= <_@skj.io> Date: Fri, 8 Feb 2019 21:43:30 -0800 Subject: [PATCH] Remove extra braces around settings to make settings easily copy-and-pastable --- Visual-Studio-Code.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Visual-Studio-Code.md b/Visual-Studio-Code.md index 5980407..548dcdc 100644 --- a/Visual-Studio-Code.md +++ b/Visual-Studio-Code.md @@ -99,12 +99,10 @@ So you could hit `-t` to see callees up to 3rd level if you set ` 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 -{ - "C_Cpp.autocomplete": "Disabled", - "C_Cpp.formatting": "Disabled", - "C_Cpp.errorSquiggles": "Disabled", - "C_Cpp.intelliSenseEngine": "Disabled", -} +"C_Cpp.autocomplete": "Disabled", +"C_Cpp.formatting": "Disabled", +"C_Cpp.errorSquiggles": "Disabled", +"C_Cpp.intelliSenseEngine": "Disabled", ``` ### Semantic Navigation