aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cmdline.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-03-17always enable ^G modifier after tab completion in ^G mode.Robin Haberkorn1-0/+3
2015-03-16implemented function key masking (context-sensitive function key macros)Robin Haberkorn1-4/+26
2015-03-16implemented automatic EOL translation supportRobin Haberkorn1-14/+9
2015-03-10simplified and optimized filename_complete()Robin Haberkorn1-54/+31
2015-03-07fixed TAB completion of files in the current directory beginning with "."Robin Haberkorn1-9/+14
2015-03-07Curses UI: fixed translation of the backspace keyRobin Haberkorn1-1/+1
2015-03-07cleaned up usage of the escape control character: introduced CTL_KEY_ESC and ...Robin Haberkorn1-3/+3
2015-03-07fixed 0EB command to display all buffers in the ringRobin Haberkorn1-22/+23
2015-03-02fixed re-insertion of incomplete commandsRobin Haberkorn1-1/+3
2015-03-02avoid warning about uninitialized variableRobin Haberkorn1-1/+1
2015-03-02fixed function key handling on GTK UIRobin Haberkorn1-1/+3
2015-03-02try hard to free heap memory after command-line termination using malloc_trim()Robin Haberkorn1-2/+13
2015-03-02introduced the ^G immediate editing command for toggling the undo/redo mode (...Robin Haberkorn1-85/+158
2015-03-01keep rubbed out command line for later re-insertion and massive Cmdline clean...Robin Haberkorn1-164/+185
2015-03-01moved String helper functions from sciteco.h and main.cpp to string-utils.cpp...Robin Haberkorn1-0/+1
2015-02-11updated copyright to 2015Robin Haberkorn1-1/+1
2015-02-11implemented support for different indention stylesRobin Haberkorn1-1/+11
2014-12-09support filename auto completions with forward-slash directory separators on ...Robin Haberkorn1-4/+52
2014-12-09Curses: support cycling through long lists of possible auto-completions and o...Robin Haberkorn1-21/+59
2014-12-08do not show possible completions for hidden files and directoriesRobin Haberkorn1-10/+19
2014-11-24turn off Scintilla undo collection by default and fixed memleakRobin Haberkorn1-1/+3
2014-11-22added globbing command ENRobin Haberkorn1-0/+1
2014-11-21finally implemented the CLOSE and QUIT hooksRobin Haberkorn1-5/+3
2014-11-16rewritten View and Interface base classes using the Curiously Recurring Templ...Robin Haberkorn1-5/+5
2014-11-11refactored SciTECO runtime errors: moved from parser.cpp to error.cppRobin Haberkorn1-2/+3
2014-11-11added all of SciTECO's declarations to the "SciTECO" namespaceRobin Haberkorn1-0/+4
2014-11-09TAB-completion for EC commandRobin Haberkorn1-2/+13
2014-11-09implemented EC command (execute operating system command) in spawn.cppRobin Haberkorn1-0/+1
2014-02-16rewritten command-line completion without Glib's g_complete_ functionsRobin Haberkorn1-40/+60
2014-02-15updated Copyright to year 2014Robin Haberkorn1-1/+1
2014-02-15removed most exception specifications: allow bad_allocs to propagateRobin Haberkorn1-1/+1
2014-02-15added support for TECO stack tracingRobin Haberkorn1-1/+4
2013-03-18make sure a (void*)0 is used as sentinelsRobin Haberkorn1-2/+2
2013-03-16common parent state for all file-name-expecting commands: fixes EM tab-comple...Robin Haberkorn1-3/+1
2013-03-16documented remaining commandsRobin Haberkorn1-0/+7
2013-02-22resolved enter-key handling by introducing get_eol()Robin Haberkorn1-0/+14
2013-02-22Windows (MinGW) compatibility fixes: suspending impossible and environment in...Robin Haberkorn1-1/+3
2013-02-16fixed commandline replacementsRobin Haberkorn1-15/+16
2013-02-16function key support (keys without printable representation) using keyboard m...Robin Haberkorn1-0/+17
2013-02-11properly support <CTL/Z> suspension as immediate commandRobin Haberkorn1-0/+12
2013-02-11<CTL/U> immediate editing command to rubout current string paramRobin Haberkorn1-0/+9
2013-02-11fixup: word-rubout may rub out nothingRobin Haberkorn1-4/+3
2013-02-11States::is_string() to check whether current state is a string-stateRobin Haberkorn1-7/+8
2013-02-11support <CTRL/W> immediate editing command: depending on context, rub out wor...Robin Haberkorn1-0/+24
2013-02-11support <CNTRL/T> immediate editing command only in string parametersRobin Haberkorn1-31/+32
2013-02-08reverse Execute::step() change: no need to pass parameters by referenceRobin Haberkorn1-1/+1
2013-02-08delegate commandline replacements ("}") to the cmdline macro levelRobin Haberkorn1-11/+34
2013-02-03first draft of commandline-editing commands ({ and } as in VideoTECO)Robin Haberkorn1-22/+11
2013-01-27fixed scintilla symbol autocompletionRobin Haberkorn1-3/+3
2013-01-23cleaned up QRegister state interface (can pass register by reference)Robin Haberkorn1-3/+3