Skip to content

FlexW/tedit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tedit - Terminal Text Editor

This is a simple terminal text editor, that I have written from scratch to get a bit used to C++. It displays line numbers and can open multiple files at the same time.

Screenshots

Editor

Build

On Ubuntu:

sudo apt-get install build-essential
sudo apt-get install cmake
sudo apt-get install ncurses-dev

git clone https://github.com/FlexW/tedit.git ~/tedit
cd ~/tedit
mkdir build && cd build
cmake ..
make
sudo make install

Run program

tedit

Usage

Commands:

Ctrl-o      Open file
Ctrl-s      Save file
Ctrl-n      Next buffer
Ctrl-p      Previous buffer
Ctrl-q      Quit editor