Skip to content

Commit

Permalink
added info about how to associate other file types to readme
Browse files Browse the repository at this point in the history
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))
  • Loading branch information
mivanit authored Oct 3, 2023
1 parent 100c68a commit 2f3c574
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ Display the content of a Zip file in a Tree Explorer
2. Select `Extract Element`
3. Specify the path where to extract

### Other Files

To have the `Explore Zip File` menu show up for other filetypes, you can associate those extensions with `zip` in your VSCode config json:
```
"files.associations": {
"*.egg": "zip",
"*.apk": "zip",
"*.your_extension": "zip"
}
```

## Requirements

Visual Studio Code v1.13.0
Expand Down

0 comments on commit 2f3c574

Please sign in to comment.