PejmanNik / vscode-autoScroll

AutoScroll extension for VS Code
https://marketplace.visualstudio.com/items?itemName=pejmannikram.vscode-auto-scroll
MIT License
23 stars 6 forks source link

Specify other file extensions for autoscroll #20

Open ewu63 opened 2 years ago

ewu63 commented 2 years ago

It would be great to be able to specify a list of file extensions where autoscroll is enabled, such as by setting

"autoScroll.fileExtensions": ["log", "output"]

in settings.json.

A more general approach would be to allow for regex pattern matching, but for my use case specifying a list of extensions is sufficient.

PejmanNik commented 9 months ago

right now the extension will get automatically active when the file language is detected as log In the vs code, so you can register your file extensions as log in the vs code setting

https://code.visualstudio.com/docs/languages/identifiers

adding an actual file format support, means the extension must get activated for all languages, I'll try to find some time to work on it