make/vscode/indexers/clangd-settings.txt
changeset 55166 2ae056696b15
equal deleted inserted replaced
55165:a82a367b2d8c 55166:2ae056696b15
       
     1 		// Configure cpptools IntelliSense
       
     2 		"C_Cpp.intelliSenseCachePath": "{{OUTPUTDIR}}/.vscode",
       
     3 		"C_Cpp.default.compileCommands": "{{OUTPUTDIR}}/compile_commands.json",
       
     4 		"C_Cpp.default.cppStandard": "c++03",
       
     5 		"C_Cpp.default.compilerPath": "{{COMPILER}}",
       
     6 
       
     7 		// Configure clangd
       
     8 		"clangd.arguments": [
       
     9 			"-background-index",
       
    10 			"-compile-commands-dir={{OUTPUTDIR}}"
       
    11 		],
       
    12 
       
    13 		// Disable conflicting features from cpptools
       
    14 		"C_Cpp.autocomplete": "Disabled",
       
    15 		"C_Cpp.errorSquiggles": "Disabled",
       
    16 		"C_Cpp.formatting": "Disabled",
       
    17 		"C_Cpp.intelliSenseEngine": "Disabled",