-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
44 lines (37 loc) · 1.2 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
A simple and minimalistic editor written in pure C.
Goals:
* no external libs except termbox
* static binary
Features:
* open, edit and save multiple files
* syntax highlighting
* line numbers
* selection based copy paste
Building:
* make : compiles a full version
* make lite : compiles version without syntax highlighting
Keybinds:
General:
<F1>...<F12> : switch file
<CTRL><H> : switch file left
<CTRL><L> : switch file right
Write Mode:
<ESC> : close file, quit
<CTRL><O> : open file
<CTRL><S> : save file
<CTRL><N> : new file
<CTRL><D> : delete line
<CTRL><C> : enter selection mode
<CTRL><V> : paste clipboard
<ARROWS> : move within editor
<PAGE UP> : move cursor one screen up
<PAGE DOWN> : move cursor one screen down
<HOME> : move cursor to position 1
<END> : move cursor to end of line
Command Mode:
<ESC> : return to Write Mode
<ARROWS> : move cursor left and right
<RETURN> : execute command
Selection Mode:
<ESC> : return to Write Mode
<CTRL><C> : copy selection to clipboard