Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 704 Bytes

README.md

File metadata and controls

43 lines (34 loc) · 704 Bytes

TEd - Tiny Editor

Just a little experiment of mine.

Usage

It uses most of the vi-keybindings but not all of them:

i - insertmode
I - begin of line and insert
A - append end of line
a - append
l - move right
h - move left
j - move down
k - move up
dd - delete line
x - delete character
o - open line
O - open line before
ZZ - write file and close
ZQ - quit
: - open command mode

Available commands in command mode:

w - write
q - quit
wq - write and quit

In further versions of TEd it will be more compatible with vi and the commands which differ will bi corrected.

TODO

  • Yank/Paste
  • Statusbar with filename and number of lines
  • Syntax highlighting templates.
  • Help page