stef-levesque/vscode-shader

Issues with Ionide F#

Closed this issue · 4 comments

geoeo commented

This plugin disables syntax highlighting, autocompletion etc for Ionide-fsharp

https://github.com/ionide/ionide-vscode-fsharp

It might be a problem with the file extension association.
What kind of file exactly is having this problem ?

geoeo commented

It disables syntax highlighting,autocompletion etc for ionide-f#.

FSharp and GLSL fragment shader use the same extension (*.fs)

You can specify in your VSCode user settings which language you want to associate it.
Adding this in your user or workspace settings should fix your issue.

    "files.associations": {
        "*.fs": "fsharp"
    }
geoeo commented

Of course. fs for fragment shader. Thanks!