79782314

Date: 2025-10-04 05:26:17
Score: 0.5
Natty:
Report link

Well by looking at the message:

It states that the editor.detectIndentation setting is that is capable of overriding the editor.insertSpaces setting.

So open the command pallate with the CTRL+SHIFT+p keyboard shortcut and type settings.json :

Click on "Preferences: Open User Settings(JSON)"

then add the following to the top of the User Settings JSON:

{
    "[makefile]": {
        "editor.insertSpaces": false,

        // Stops the insertSpaces setting from being overriden.
        "editor.detectIndentation": false

    }, // <--- if you don't have more settings delete this comma

    // {
    //     <more settings down here>
    // }, ...
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Funny Geeks