Search code examples
visual-studio-codesyntax-highlighting

Does vscode editor support .inc file highlight?


I'm using .inc files in vscode, but I find that vscode does not support .inc files' highlight.Does vscode support inc file syntax highlighting?

enter image description here


Solution

  • .inc files are used in multiple languages; what language are you using them in?

    You can tell VSCode to apply language-specific syntax highlighting by editing the settings.json (File > Preferences > Settings) by adding the file extension to the highlighting category.

    For example, to highlight .inc files as PHP,

    {
    "files.associations": { "*.inc": "php"}
    }  
    

    See this link for more details.