gusper / SongTxt-vscode

Visual Studio Code extension that adds support for editing text files for songs including lyrics, chords, guitar tablature, etc.
MIT License
29 stars 7 forks source link

Anyway to activate extension automatically on other files (not only *.txt, *.tab)? #21

Open contributor opened 1 year ago

contributor commented 1 year ago

I can do this manually using "Language Mode" in status bar or command pallete, and SongTxt does chord highlighting. But automatic mode would be great to brows many files in folders with non standard extension

contributor commented 1 year ago

It is possible to achieve this behavior using vscode settings json:

    "files.associations": {
        "*.md": "songtxt"
      }

This issue can be closed.