descriptionA simple text editor
ownerbdiego@gmail.com
last changeFri, 27 Jul 2012 10:09:49 +0000 (27 07:09 -0300)
content tags
add:
README
				Eco
			A simple text editor.

Eco is an Open Source project covered by the GNU General Public License
version 2, check the COPYING file for more details.

It is maintained by Diego Hernan Borghetti and only test in Linux, so
ideas, patch, bugs, whatever are welcome to bdiego@gmail.com

Eco is a small and simple text editor, need termios (ncurses) for set
the terminal characteristics and ansi scape sequence to draw in the
terminal.

The build and install process is really simple, just type make and
following by make install.

The Makefile is really simple now, if you need special library, cc flag
or any other thing, you can use the BUILD variable.

The default directory to install is HOME/bin, but you can change it
in the Makefile (PREFIX variable).


Key binding
===========

 The key binding can not be change from config file, it's build-in, and
it's:

	CX - CC	- Quit
	CX - CS	- Save file
	CK	- Kill the current line
	CR	- Rotate the view
	CG	- Goto to line N
	CX - CF	- Find a file
	CU	- Force a scren update
	CS	- Forward search
	CB	- Backward search
	CX - CR	- Search and replace
	CH	- Backspace
	CI	- Tab
	CM	- Carriage ret

 Other key binding that maybe change:
	CC	- Cut the current line (put in the kill buffer)
	CY	- Paste the text from the kill buffer into the current buf
	CL	- Clean the kill buffer

Colors
======

 Eco only use color for two things, the status line and the line where the
cursor is, both color can be set in the config file (HOME/.eco) in two
section like:

[ View ]
	foreground = COLOR
	background = COLOR

[ Screen ]
	current_line_foreground = COLOR
	current_line_background = COLOR
	empty_char_fg = COLOR
	empty_char_bg = COLOR

and COLOR can be:
	0 - Black
	1 - Red
	2 - Green
	3 - Yellow
	4 - Blue
	5 - Magenta
	6 - Cyan
	7 - White
shortlog
2012-07-27 Diego Hernan... Add xterm-256color as a valid terminal.master
2012-05-18 Diego Hernan... Refresh the buffer after remove empty lines.
2012-05-17 DiegoFix a small bug and tweak a little the syntax module.
2012-04-08 Diego Hernan... Fix to the replace function and add ; to the identation.
2012-04-05 Diego Hernan... Small tweak to identation and optimized the character...
2012-04-04 Diego Hernan... Clean empty lines before save and add < > + - to the...
2012-04-03 Diego Hernan... Cleanup code, remove unused things and rename READING...
2012-04-03 Diego Hernan... Fix page up/down scrolling.
2012-04-03 Diego Hernan... Load the files using a memory buf insted of character...
2012-04-03 Diego Hernan... Add tabs on new lines.
2012-01-08 Diego Hernan... Fix "del" command at the end of a line.
2011-06-26 Diego Hernan... Add backspace to the 'message line'.
2010-08-11 Diego Hernan... Fix and change for scroll at the end of the line.
2010-05-05 Diego Hernan... Basic syntax system, right now only C and hardcode...
2010-05-02 Diego Hernan... New color system!!!
2009-08-19 Diego Hernan... Small change to the gcc argument.
...
heads
12 years ago master