make/vscode/indexers/clangd-settings.txt
author prr
Wed, 19 Jun 2019 15:23:53 -0700
changeset 58628 874e94940351
parent 55166 2ae056696b15
permissions -rw-r--r--
8225597: Enhance font glyph mapping Reviewed-by: serb, psadhukhan, mschoene, rhalade

		// Configure cpptools IntelliSense
		"C_Cpp.intelliSenseCachePath": "{{OUTPUTDIR}}/.vscode",
		"C_Cpp.default.compileCommands": "{{OUTPUTDIR}}/compile_commands.json",
		"C_Cpp.default.cppStandard": "c++03",
		"C_Cpp.default.compilerPath": "{{COMPILER}}",

		// Configure clangd
		"clangd.arguments": [
			"-background-index",
			"-compile-commands-dir={{OUTPUTDIR}}"
		],

		// Disable conflicting features from cpptools
		"C_Cpp.autocomplete": "Disabled",
		"C_Cpp.errorSquiggles": "Disabled",
		"C_Cpp.formatting": "Disabled",
		"C_Cpp.intelliSenseEngine": "Disabled",