= turbo =
 * https://github.com/magiblot/turbo
An experimental text editor based on Scintilla and Turbo Vision. 

== Install on debian ==
{{{#!highlight sh
sudo apt install libncursesw5-dev
sudo apt install gpm
sudo apt install libgpm-dev
cmake . -DCMAKE_BUILD_TYPE=Release 
cmake --build .
sudo cp turbo /usr/local/bin/
sudo cp doc/turbo.1 /usr/local/man/man1/
turbo `find . -type f -name '*.java' -o -name '*.py' -o -name '*.sh'   `
}}}

== Install on Slackware ==
{{{#!highlight
git clone https://github.com/magiblot/turbo.git --recursive
cd turbo
cmake . -DCMAKE_BUILD_TYPE=Release
cmake --build . 
sudo cp turbo /usr/local/bin/
sudo cp doc/turbo.1 /usr/local/man/man1/
}}}