-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file name extension configuration able #1
Comments
The file extensions are currently set in the contributes/languages section of the package.json I'm not sure there is a dynamic way to register new extensions to a LanguageId (in this case, zip) @sandy081 do you know a way we could do that within the extension code (i.e. registering new file extensions to the zip LanguageId at runtime) ? |
@foxundermoon in the meanwhile, you can manually add something like that should work: {
"files.associations": {
"*.egg": "zip",
"*.apk": "zip"
}
} |
You can always update the settings programatically. |
You mean update the Workspace Settings for |
Yes |
Would be great to have this capability to be able to view .nupkg files which are just .zips |
A settings config for custom ZIP-file extensions would indeed be awesome, especially considering that most Java-libraries are packaged as JAR-files. |
Would be great to have this capability to be able to view and edit .gz files |
I think this is enough, but it should be mentioned somewhere in the extension page. Either that, or show the Zip menu entries on any file, and just give an error if the file was not a zip file. |
adding this to the readme of the package would be very helpful |
its possible to use this extension to open files with other extensions that are actually just zip files, but this information is not obvious and [buried in the issues](stef-levesque#1 (comment))
there are many file ext name for zip such as
.egg
.apk
....but now it just .zip ext context menu.
so can add file extensions config
The text was updated successfully, but these errors were encountered: