index
:
sciteco
hsrex
libxcurses
master
session-extensions
Scintilla-based Text Editor and COrrector
Robin Haberkorn
about
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
Age
Commit message (
Expand
)
Author
Files
Lines
2024-12-08
implemented the ^Q command for converting between line and glyph positions
Robin Haberkorn
1
-0
/
+65
2024-12-06
support the ::S anchored search (string comparison) command (and ::FD, ::FR, ...
Robin Haberkorn
8
-68
/
+120
2024-12-04
the <Xq> command now supports the @ modifier for cutting into the register
Robin Haberkorn
4
-9
/
+61
2024-12-04
implemented ^Y/^S commands for receiving pattern match/insertion ranges and l...
Robin Haberkorn
7
-25
/
+219
2024-11-25
fixed operator precedence application (fixup 5597bc72671d0128e6f0dba446c4dc8d...
Robin Haberkorn
1
-6
/
+10
2024-11-25
avoid dynamic stack allocation in teco_expressions_brace_return()
Robin Haberkorn
1
-4
/
+1
2024-11-25
fixed subtle operator precedence bug
Robin Haberkorn
1
-1
/
+1
2024-11-24
added special Q-Register ":" for accessing dot
Robin Haberkorn
4
-0
/
+55
2024-11-24
minor documentation changes: use typographic quotes instead of "
Robin Haberkorn
2
-3
/
+3
2024-11-23
string building: ^c (caret+c) does no longer expand to data garbage for non-c...
Robin Haberkorn
1
-0
/
+9
2024-11-23
disallow setting the radix to values lower than 2
Robin Haberkorn
2
-8
/
+28
2024-11-23
the search mode and current radix are mapped to __local__ Q-Registers ^X and ...
Robin Haberkorn
9
-44
/
+144
2024-11-23
implemented search mode flag (^X): allow case-sensitive searches (closes #17)
Robin Haberkorn
3
-2
/
+38
2024-11-19
minor documentation fixes
Robin Haberkorn
1
-2
/
+4
2024-11-18
fixed some common typos: "ie." and "eg.", "ocur" instead of "occur"
Robin Haberkorn
8
-14
/
+14
2024-11-10
Win32: fixed Unicode commandlines with newer MinGW runtimes
Robin Haberkorn
2
-1
/
+18
2024-11-07
if a macro ends without finding a goto label, always throw a 'Label "..." not...
Robin Haberkorn
1
-7
/
+7
2024-11-07
test suite: fixed failure detection in the commandline-editing test cases
Robin Haberkorn
1
-0
/
+4
2024-11-06
fixed the Q-Reg spec machine used for implementing S^EGq$ (match one of chara...
Robin Haberkorn
3
-21
/
+29
2024-11-06
fixed possible crashes during --fake-cmdline
Robin Haberkorn
1
-4
/
+2
2024-11-05
fixup: fixed Windows builds
Robin Haberkorn
1
-1
/
+1
2024-11-05
fully support relocatable binaries, improving AppImages
Robin Haberkorn
4
-34
/
+118
2024-11-03
fixed assertions in ^EGq search construct for Q-Registers with uninitialized ...
Robin Haberkorn
1
-1
/
+1
2024-11-03
Added "infinite monkey"-style test (refs #26)
Robin Haberkorn
2
-0
/
+36
2024-10-30
fixup: make sure the correct PCs, pointing directly at the command that faile...
Robin Haberkorn
1
-2
/
+7
2024-10-30
fixed invalid memory access when executing the F< command (but only when jump...
Robin Haberkorn
3
-6
/
+6
2024-10-29
fixed <N> (search all) crashes before invocations of <S> (closes #26)
Robin Haberkorn
1
-0
/
+7
2024-10-29
PDCurses: filter out bogus double keypresses in combination with CTRL (refs #20)
Robin Haberkorn
1
-0
/
+12
2024-10-29
teco_interface_cmdline_update() now protects against batch mode (--fake-cmdline)
Robin Haberkorn
1
-0
/
+7
2024-10-28
added hidden --fake-cmdline parameter for testing command-line editing
Robin Haberkorn
1
-0
/
+13
2024-10-28
fixed rubbing out <:Xq>, <:^Uq> and other append-to-register operations
Robin Haberkorn
4
-31
/
+29
2024-10-24
<EC>: fixed hangs on UNIX
Robin Haberkorn
1
-3
/
+13
2024-10-21
fixed some interruptions of <EC> on Win32
Robin Haberkorn
1
-1
/
+28
2024-10-21
GTK/Win32: include trailing null byte in gtk_selection_data_set_text()
Robin Haberkorn
1
-1
/
+6
2024-10-21
<EC>: fixed insertion of data garbage (invalid reads) and omissions
Robin Haberkorn
2
-8
/
+18
2024-10-21
GTK/Win32: fixed clipboard retrieval (trailing nulls)
Robin Haberkorn
1
-0
/
+5
2024-10-21
fixed EOL conversion on UTF-8 texts
Robin Haberkorn
1
-1
/
+1
2024-10-19
<EC>: perhaps fixed race conditions and problems when creating and terminatin...
Robin Haberkorn
2
-4
/
+34
2024-10-18
fixed the "Editing local registers in macro calls" check
Robin Haberkorn
4
-6
/
+12
2024-10-16
Revert "replaced bool completely with gboolean"
Robin Haberkorn
2
-7
/
+10
2024-10-16
fixup: use teco_machine_t::must_undo instead of trying to identify the curren...
Robin Haberkorn
6
-43
/
+30
2024-10-15
fixed memory corruptions due to undoing the teco_machine_stringbuilding_t::co...
Robin Haberkorn
5
-8
/
+42
2024-10-15
fixed memory leak when replacing command lines
Robin Haberkorn
1
-3
/
+2
2024-10-15
netbsd-curses: fixed the default escape delay
Robin Haberkorn
1
-22
/
+22
2024-10-15
improved support for braces within loops: warn about unclosed braces and allo...
Robin Haberkorn
2
-3
/
+14
2024-10-06
fixup b36ff2502ae3b0e18fa862a01fba9cc2c9067e31: fixes pattern match character...
Robin Haberkorn
1
-0
/
+1
2024-10-05
Gtk UI: support setting and getting clipboards containing null bytes
Robin Haberkorn
3
-13
/
+57
2024-10-04
pattern match characters support ^Q/^R now as well
Robin Haberkorn
2
-11
/
+41
2024-09-28
replaced bool completely with gboolean
Robin Haberkorn
2
-10
/
+7
2024-09-28
fixed compilation on most compilers due to goto beyond g_auto() declaration
Robin Haberkorn
1
-3
/
+3
[next]