Zee icon
Zee icon

Zee

 Like this app

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
0 likes
0comments
0 news articles

Features

Suggest and vote on features
  1.  Command line interface

Zee News & Activities

Highlights All activities

Recent activities

  • App icon
    POX added Zee as alternative to dte
    7 months ago
  • inson1 updated Zee
    9 months ago
Show all activities

Zee information

  • Developed by

    Marius Cobzarenco
  • Licensing

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

  • Alternatives

    25 alternatives listed
  • Supported Languages

    • English

AlternativeTo Categories

OS & UtilitiesOffice & ProductivityDevelopment

GitHub repository

  •  1,488 Stars
  •  42 Forks
  •  40 Open Issues
  •   Updated Aug 15, 2022 
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