Zee is a modern editor for the terminal, written in Rust. It is highly experimental code.
In the old tradition of text editor demos, here's what it currently looks like editing its own source code
The recommended way to install zee using cargo install
$ cargo install zee
The editor depends on a bunch of tree sitter parsers, one for each supported language. These are included as git submodules in grammar/languages/tree-sitter-*
.
After cloning the repository, you have to run
git submodule update --init --recursive
then you should be able to build normally with cargo.
To start the editor run zee
. As expected, you can pass in one or multiple files to be opened, e.g. zee file1 file2
.
Zee uses Emacs-y keybindings. Below, C-
means Ctrl
+ the specified key, e.g. C-k
is Ctrl + k
. Similarly A-
means Alt
+ the specified key. Empty spaces denote a sequence of key presses, e.g. C-x C-c
means first pressing C-x
followed by C-c
.
The following keybindings are available:
C-p
, Up
move upC-n
, Down
move downC-b
, Left
move backwardsC-f
, Right
move forwardsC-a
, Home
move to start of lineC-e
, End
move to end of lineC-v
, PageDown
move down one pageA-v
, PageUp
move up one pageA-<
move to the beginning of the bufferA->
move to the end of the bufferC-l
centre the cursor visuallyC-d
delete forwardsBackspace
delete backwardsC-k
delete the current lineC-SPC
enter selection mode at the current cursor positionC-w
cut selectionA-w
copy selectionC-x h
select the entire buffer and move the cursor to the beginningC-y
paste selection (yank in Emacs)C-g
clear the current selectionC-_
, C-z
, C-/
undo previous commandC-q
redo previous commandC-x u
open the edit tree viewerC-x C-s
save the current bufferC-x C-f
choose a file to open using a directory-level pickerC-x C-v
search recursively for a file to open from the selected directoryC-l
while opening a file, go to the parent directoryTab
while opening a file, fills in the currently selected pathC-p
, Up
move up the tree to an older revision, undoing the commandC-n
, Down
move down the tree to a newer revision, redoing the commandC-b
, Left
select the left child of current revisionC-f
, Right
select the right child of current revisionC-g
cancel the current operationC-x k
kill a bufferC-x b
switch bufferC-x 0
, C-x C-0
close the focused windowC-x 1
, C-x C-1
make the focused window fullscreenC-x 2
, C-x C-2
split the focused window belowC-x 3
, C-x C-3
split the focused window to the rightC-x o
, C-x C-o
switch focus to the next bufferC-x C-t
cycle through the available themesC-x C-c
quitThis project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.