aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Expand)AuthorFilesLines
2012-11-16README.md for GithubRobin Haberkorn1-0/+57
2012-11-16ensure that infoline is correct on startupRobin Haberkorn1-1/+2
2012-11-16fixed clearing message line: do not display an empty message line (which can ...Robin Haberkorn6-3/+27
2012-11-16changed default scintilla directoryRobin Haberkorn1-1/+1
2012-11-16clear message line after every keypressRobin Haberkorn1-0/+1
2012-11-16support different kinds of runtime errors (using C++ exceptions)Robin Haberkorn7-113/+174
2012-11-16NCURSES interface: fix message displaying in batch mode (avoid any refresh)Robin Haberkorn1-1/+13
2012-11-16file closing must be enforced now (teco.ini)Robin Haberkorn1-1/+1
2012-11-16support EF and EX arguments. FALSE (>= 0) means to refuse closing/exiting if ...Robin Haberkorn3-0/+24
2012-11-16NCURSES: simplified notification callback a bitRobin Haberkorn1-4/+2
2012-11-16empty Scintilla undo buffer on line termination and after mungingRobin Haberkorn2-0/+4
2012-11-16keep a buffer dirty flag and display infos about the current buffer in the in...Robin Haberkorn8-65/+261
2012-11-16define some Autoconf-(config.h)-like PACKAGE_* macrosRobin Haberkorn1-0/+5
2012-11-15NCurses interface: support terminal resizingRobin Haberkorn5-10/+50
2012-11-15install targetRobin Haberkorn1-0/+5
2012-11-15support stdio for curses interfaceRobin Haberkorn6-32/+86
2012-11-15ease changing the scintilla directoryRobin Haberkorn1-3/+4
2012-11-15minor Makefile cleanupRobin Haberkorn1-1/+3
2012-11-15minor change to avoid compiler warningRobin Haberkorn1-1/+1
2012-11-15added NCurses user interface (based on Scinterm)Robin Haberkorn3-9/+286
2012-11-15changed default colors and moved stuff into user interfaceRobin Haberkorn2-11/+19
2012-11-15adapted Makefile to handle different user interfacesRobin Haberkorn2-8/+33
2012-11-15cleaned up command line updating: the interface is responsible for drawing th...Robin Haberkorn5-13/+15
2012-11-15make it possible for interface classes to define a get_options() method to ad...Robin Haberkorn3-2/+17
2012-11-15changed save point file pattern to .teco-xxx-dddRobin Haberkorn2-2/+2
2012-11-15replaced remaining editor_msg() references with new Interface::ssm()Robin Haberkorn1-10/+11
2012-11-15added Interface class to ease porting SciTECO to other platforms (toolkits)Robin Haberkorn11-307/+452
2012-11-15let Git ignore save point filesRobin Haberkorn1-0/+2
2012-11-15simplified popup type to gtk type mappingRobin Haberkorn1-11/+7
2012-11-14minor comment fixRobin Haberkorn1-1/+1
2012-11-14default teco ini fileRobin Haberkorn1-0/+5
2012-11-14error checking and colon modifier support for lots of commandsRobin Haberkorn3-45/+165
2012-11-14expressions.find_op(), can be used test whether we are in a loop (although th...Robin Haberkorn2-0/+14
2012-11-14simplified move_lines() a bitRobin Haberkorn1-2/+1
2012-11-14support rubout for EW command: if in undo mode, a save point is created so th...Robin Haberkorn2-15/+133
2012-11-13EF command to close a bufferRobin Haberkorn3-4/+54
2012-11-13<n>W, <n>V, <n>Y commandsRobin Haberkorn2-0/+57
2012-11-13support differen EOL modesRobin Haberkorn1-8/+17
2012-11-13minor simplificationRobin Haberkorn1-1/+1
2012-11-13when autocompleting, highlight files that are already in the bufferRobin Haberkorn1-4/+10
2012-11-13try to canonicalize paths to non-existent filesRobin Haberkorn2-9/+25
2012-11-13added EW...$ commandRobin Haberkorn4-22/+113
2012-11-13reset dot on search failureRobin Haberkorn1-5/+6
2012-11-13support :S...$ commandRobin Haberkorn1-0/+3
2012-11-13added support for string match characters (match spec to regexp compiler)Robin Haberkorn4-5/+254
2012-11-13fixed undoing of setting Q-Register stringRobin Haberkorn3-7/+20
2012-11-13Search command: use clever circular stack for the last (-n) matches for n < 0...Robin Haberkorn1-11/+9
2012-11-13when doing a reverse search, allocate array of matches (since it can currentl...Robin Haberkorn1-1/+3
2012-11-13<x[,y]>S...$ command (only regexp searching at the moment)Robin Haberkorn4-3/+153
2012-11-12distinguish between GOTO, LOOP and CONDITIONAL parse-only modes: fixes loop b...Robin Haberkorn3-18/+28