Zed Improved. Aiming to improve upon Zed and make a truly delightful code editor.
https://zed.dev
![]() This PR recognizes the following filetypes and provides them with appropriate icons: `.avi .heic .j2k .jfif .jp2 .jxl .m4a .m4v .mkv .mka .mov .opus .qoi .wma .wmv .wv`. It also corrects `.ogg` to display an audio icon, not a video icon. Though the container supports video, `.ogg` files are most commonly found containing audio-only bitstreams likely due to the popularity of the Vorbis audio codec. VSCode recognizes OGG files as audio. Here is an exhaustive list of the file formats this PR aims to recognize, with a subjective commonality rating attached to each: - `.avi`: Audio Video Interleave. Multimedia container format for video and audio data. **Rating: 7/10** - `.heic`: High Efficiency Image Format. The same thing as `.heif`, which is currently recognized. **Rating: 6/10** - `.j2k`: JPEG 2000. Bitmap image format for lossy or lossless compression. **Rating: 3/10** - `.jfif`: JPEG File Interchange Format. Alternative JPEG extension that sometimes pops up on the Web. **Rating: 5/10** - `.jp2`: JPEG 2000 again, same rating. - `.jxl`: JPEG XL. Modern, versatile image format growing in popularity. **Rating: 5/10** - `.m4a`: MPEG-4 Audio. Audio file format using AAC (lossy) or ALAC (lossless) codecs. **Rating: 8/10** - `.m4v`: MPEG-4 Video. Video container format developed by Apple similar to MP4. **Rating: 4/10** - `.mkv`: Matroska Video. Multimedia container format for video, audio, and subtitle tracks. **Rating: 8/10** - `.mka`: Matroska Audio. Audio file format supporting several types of audio compression algorithms. **Rating: 3/10** - `.mov`: QuickTime Movie. Multimedia container format developed by Apple. **Rating: 8/10** - `.opus`: Opus Audio. Audio coding format for efficient real-time audio streaming. **Rating: 7/10** - `.qoi`: Quite OK Image. Modern lossless image format for fast encoding & decoding. **Rating: 1/10** - `.wma`: Windows Media Audio. Audio file format developed by Microsoft. **Rating: 6/10** - `.wmv`: Windows Media Video. Video file format developed by Microsoft. **Rating: 7/10** - `.wv`: WavPack. Free, open-source lossless audio compression format similar to FLAC. **Rating: 2/10** Again note that the commonality rating is subjective and may vary based on the specific use cases users have for Zed and their software environments. I hope some of these will be considered, as having flexible filetype recognition greatly adds to the feeling of completeness in an editor at what appears to be very little cost. Thank you! Release Notes: - Adds icon associations for more multimedia types [#7551](https://github.com/zed-industries/zed/issues/7551). |
||
---|---|---|
.cargo | ||
.config | ||
.github | ||
.zed | ||
assets | ||
crates | ||
docs | ||
plugins | ||
script | ||
.dockerignore | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.mailmap | ||
Cargo.lock | ||
Cargo.toml | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
debug.plist | ||
docker-compose.sql | ||
docker-compose.yml | ||
Dockerfile | ||
LICENSE-AGPL | ||
LICENSE-APACHE | ||
LICENSE-GPL | ||
Procfile | ||
README.md | ||
rust-toolchain.toml | ||
typos.toml |
Zed
Welcome to Zed, a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
Installation
You can download Zed today for macOS (v10.15+).
Support for additional platforms is on our roadmap:
- Linux (tracking issue)
- Windows (tracking issue)
- Web (tracking issue)
For macOS users, you can also install Zed from Homebrew:
brew install zed
Developing Zed
Contributing
See CONTRIBUTING.md for ways you can contribute to Zed.
Licensing
License information for third party dependencies must be correctly provided for CI to pass.
We use cargo-about
to automatically comply with open source licenses. If CI is failing, check the following:
- Is it showing a
no license specified
error for a crate you've created? If so, addpublish = false
under[package]
in your crate's Cargo.toml. - Is the error
failed to satisfy license requirements
for a dependency? If so, first determine what license the project has and whether this system is sufficient to comply with this license's requirements. If you're unsure, ask a lawyer. Once you've verified that this system is acceptable add the license's SPDX identifier to theaccepted
array inscript/licenses/zed-licenses.toml
. - Is
cargo-about
unable to find the license for a dependency? If so, add a clarification field at the end ofscript/licenses/zed-licenses.toml
, as specified in the cargo-about book.