VSCode adding a ruler for python files but not C files. Why?
Advertisements I’m tring to add custom rulers for C and python files in vscode. Here is my settings.json file { "C_Cpp.updateChannel": "Insiders", "editor.inlineSuggest.enabled": true, "security.workspace.trust.untrustedFiles": "open", "python.defaultInterpreterPath": "C:\\Path\\to\\my\\python.exe", "python.formatting.provider": "black", "[C_Cpp]": { "editor.rulers": [ 80 ], }, "editor.formatOnSave": true, "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", "editor.rulers": [ 88 ], }, } Here’s my main.cpp file #include <iostream>… Read More VSCode adding a ruler for python files but not C files. Why?