Zee icon
Zee icon

Zee

 Like

Zee is a modern editor for the terminal, written in Rust. It is a highly experimental code. In the old tradition of text editor demos, here's what it currently looks like editing its own source code.

Zee screenshot 1

License model

  • FreeOpen Source

Application types

Platforms

  • Mac
  • Windows
  • Linux
  • BSD
Discontinued

Last update was in August 2022

  No rating
0likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Command line interface

 Tags

  • terminal-editor

Zee News & Activities

Highlights All activities

Recent activities

Show all activities

Zee information

  • Developed by

    Marius Cobzarenco
  • Licensing

    Open Source (Apache-2.0) and Free product.
  • Written in

  • Alternatives

    26 alternatives listed
  • Supported Languages

    • English

AlternativeTo Categories

OS & UtilitiesOffice & ProductivityDevelopment

GitHub repository

  •  1,562 Stars
  •  43 Forks
  •  44 Open Issues
  •   Updated Feb 6, 2025 
View on GitHub

Our users have written 0 comments and reviews about Zee, and it has gotten 0 likes

Zee was added to AlternativeTo by Paul on Mar 30, 2022 and this page was last updated Mar 12, 2024.
No comments or reviews, maybe you want to be first?
Post comment/review

What is Zee?

Zee is a modern editor for the terminal, written in Rust. It is a highly experimental code. In the old tradition of text editor demos, here's what it currently looks like editing its own source code.

Features:

  • The 100 FPS editor. Cursor movement and edits render under 10ms. Everything else happens asynchronously (syntax parsing and highlighting, IO to/from disk, file pickers).
  • Buffers are backed by a fast B-tree implementation of a rope (via cessen's ropey).
  • Uses Tree-sitter for generating a parse tree from your code. This AST is used for syntax highlighting and on the fly validation. As it is an incremental parsing library, it scales to files with 1 million lines of code.
  • Multi-buffer, multi-pane -- shared state beats tmux with multiple editors
  • Fast recursive file search with fuzzy matching and aware of ignore files (using BurntSushi's ripgrep crates walkdir, ignore)
  • Local file picker with directory navigation
  • A pragmatic editor, not a research endeavour into CRDTs

Official Links