Skip to content

Lt1Gt0/sustext

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 26, 2022
ca7c3e2 · Mar 26, 2022

History

43 Commits
Mar 26, 2022
Mar 10, 2022
Mar 5, 2022
Mar 26, 2022

Repository files navigation

sustext

About

Text editor made in C++ ran in the linux terminal.

The escape sequences are based off VT100 Terminals which can be clearly seen in the source files of IO and Terminal

Pre requisites

g++ compiler

sudo apt install g++

Running the editor

To run the editor as of currently, clone the repository and run make

After doing so run ./bin/sustext

If you want to run the terminal and open a specific file you can pass it in as a parameter

Example

./bin/sustext [path_to_file]

More info about different commands in the editor found in Editor Commands

Editor Commands

ctrl + q -> exit the editor

Features

  • Open files
  • Basic key bindings for control

TODO

  • Add input from the user
    • Simple Typing
    • Keybinds (vim like)
  • Resize the row count if the terminal window is resized (dynmaic sizing)
  • different highlighting modes in viewer
  • different modes of opening (viewer, editor, etc...)
  • syntax highlighting??