Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
Go to file
2023-01-27 09:50:59 +01:00
.github Added cargo-about auto-install and CI steps 2023-01-23 12:51:32 -08:00
.vscode Hit the local server when debugging 2021-08-24 17:11:40 -06:00
assets Added cargo-about auto-install and CI steps 2023-01-23 12:51:32 -08:00
crates Ensure proto::UpdateWorktree::removed_entries doesn't exceed chunk size 2023-01-26 17:26:31 +01:00
plugins Fixed build errors in json_language 2022-08-10 17:50:44 -07:00
script Insert macOS file association metadata during bundle process 2023-01-24 17:07:02 -05:00
styles Added complete scripts for generating third party license files 2023-01-23 12:47:12 -08:00
.dockerignore Add more paths to dockerignore 2022-10-21 14:24:43 -07:00
.gitignore Added cargo-about auto-install and CI steps 2023-01-23 12:51:32 -08:00
.gitmodules WIP: start on live_kit_server 2022-10-17 09:59:16 +02:00
Cargo.lock v0.72.x dev 2023-01-25 15:20:41 -05:00
Cargo.toml Abort collaboration process if any thread panics 2023-01-27 09:50:59 +01:00
Dockerfile Abort collaboration process if any thread panics 2023-01-27 09:50:59 +01:00
Procfile Add livekit to the Procfile, update the README 2022-10-27 13:24:35 -07:00
README.md Remove roadmap from readme 2023-01-10 17:38:34 -08:00

Zed

CI

Welcome to Zed, a lightning-fast, collaborative code editor that makes your dreams come true.

Development tips

Dependencies

  • Install Postgres.app and start it.

  • Install the LiveKit server and the foreman process supervisor:

    brew install livekit
    brew install foreman
    
  • Ensure the Zed.dev website is checked out in a sibling directory:

    cd ..
    git clone https://github.com/zed-industries/zed.dev
    
  • Set up a local zed database and seed it with some initial users:

    script/bootstrap
    

Testing against locally-running servers

Start the web and collab servers:

foreman start

If you want to run Zed pointed at the local servers, you can run:

script/zed-with-local-servers
# or...
script/zed-with-local-servers --release

Dump element JSON

If you trigger cmd-alt-i, Zed will copy a JSON representation of the current window contents to the clipboard. You can paste this in a tool like DJSON to navigate the state of on-screen elements in a structured way.

Staff Only Features

Many features (e.g. the terminal) take significant time and effort before they are polished enough to be released to even Alpha users. But Zed's team workflow relies on fast, daily PRs and there can be large merge conflicts for feature branchs that diverge for a few days. To bridge this gap, there is a staff_mode field in the Settings that staff can set to enable these unpolished or incomplete features. Note that this setting isn't leaked via autocompletion, but there is no mechanism to stop users from setting this anyway. As initilization of Zed components is only done once, on startup, setting staff_mode may require a restart to take effect. You can set staff only key bindings in the assets/keymaps/internal.json file, and add staff only themes in the styles/src/themes/internal directory

Experimental Features

A user facing feature flag can be added to Zed by:

  • Adding a setting to the crates/settings/src/settings.rs FeatureFlags struct. Use a boolean for a simple on/off, or use a struct to experiment with different configuration options.
  • If the feature needs keybindings, add a file to the assets/keymaps/experiments/ folder, then update the FeatureFlags::keymap_files() method to check for your feature's flag and add it's keybindings's path to the method's list.
  • If you want to add an experimental theme, add it to the styles/src/themes/experiments folder

The Settings global should be initialized with the user's feature flags by the time the feature's init(cx) equivalent is called.

To promote an experimental feature to a full feature:

  • If this is an experimental theme, move the theme file from the styles/src/themes/experiments folder to the styles/src/themes/ folder
  • Take the features settings (if any) and add them under a new variable in the Settings struct. Don't forget to add a merge() call in set_user_settings()!
  • Take the feature's keybindings and add them to the default.json (or equivalent) file
  • Remove the file from the FeatureFlags::keymap_files() method
  • Remove the conditional in the feature's init(cx) equivalent.

That's it 😸

Wasm Plugins

Zed has a Wasm-based plugin runtime which it currently uses to embed plugins. To compile Zed, you'll need to have the wasm32-wasi toolchain installed on your system. To install this toolchain, run:

rustup target add wasm32-wasi

Plugins can be found in the plugins folder in the root. For more information about how plugins work, check the Plugin Guide in crates/plugin_runtime/README.md.