index
:
pw
master
Pipe Watch utility
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
pw.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove stray clrline call from execute.
Kaz Kylheku
2022-05-13
1
-2
/
+0
*
When cmdbuf used for result, set cursor position to EOL.
Kaz Kylheku
2022-05-13
1
-8
/
+10
*
Much better editing.
Kaz Kylheku
2022-05-13
1
-11
/
+62
*
bugfix: snapshots not taken in background.
Kaz Kylheku
2022-05-13
1
-1
/
+1
*
New feature: highlight differences between snapshots.
Kaz Kylheku
2022-05-13
1
-13
/
+57
*
Preparation for diff-showing feature.
Kaz Kylheku
2022-05-13
1
-30
/
+44
*
drawline: move integer index pos, not line pointer.
Kaz Kylheku
2022-05-13
1
-7
/
+7
*
Expand tabs to spaces, with configurable tab size.
Kaz Kylheku
2022-05-13
1
-10
/
+35
*
Bugfix: getln doesn't substitute control chars.
Kaz Kylheku
2022-05-13
1
-1
/
+1
*
:p command resets any parameters not specified.
Kaz Kylheku
2022-05-11
1
-1
/
+3
*
Resizing: fix leaks, use-after-free.
Kaz Kylheku
2022-05-09
1
-14
/
+15
*
Add optional freeing code for leak debugging.
Kaz Kylheku
2022-05-09
1
-0
/
+18
*
Use resizebuf instead of realloc.
Kaz Kylheku
2022-05-09
1
-1
/
+1
*
Avoid unnecessary realloc in resizebuf.
Kaz Kylheku
2022-05-09
1
-4
/
+5
*
Use grclean instead of regfree and dsdrop.
Kaz Kylheku
2022-05-09
1
-3
/
+1
*
New :p command; :s saves display params too.
Kaz Kylheku
2022-05-08
1
-4
/
+16
*
Move decoding of -p params into function.
Kaz Kylheku
2022-05-08
1
-37
/
+46
*
Ctrl-G shows a few flags also, and -p restores them.
Kaz Kylheku
2022-05-08
1
-5
/
+16
*
New :s option to save the state.
Kaz Kylheku
2022-05-08
1
-0
/
+62
*
Implement -f option: commands from file.
Kaz Kylheku
2022-05-08
1
-2
/
+39
*
Move batch command execution into function.
Kaz Kylheku
2022-05-08
1
-14
/
+23
*
New -e option to execute commands.
Kaz Kylheku
2022-05-07
1
-6
/
+33
*
Move trigger setting into execute function.
Kaz Kylheku
2022-05-07
1
-99
/
+99
*
Main loop vars: indentation fix.
Kaz Kylheku
2022-05-07
1
-2
/
+2
*
Change execute function's interface.
Kaz Kylheku
2022-05-07
1
-40
/
+57
*
New feature: trigger frequency and snapshot count.
Kaz Kylheku
2022-05-07
1
-11
/
+56
*
Use hex constants for status flags.
Kaz Kylheku
2022-05-07
1
-11
/
+11
*
Bugfix: getznn must allow zero.
Kaz Kylheku
2022-05-07
1
-1
/
+1
*
Algebraic adjustment in inequality.
Kaz Kylheku
2022-05-06
1
-1
/
+1
*
Minor tweak to middle pane behavior.
Kaz Kylheku
2022-05-06
1
-1
/
+1
*
Implement . (period) command for repeating commands.
Kaz Kylheku
2022-05-06
1
-3
/
+20
*
Convert almost all remaining unsigned int.
Kaz Kylheku
2022-05-06
1
-28
/
+27
*
Fix work overflow. Also increase max workbout to 4096.
Kaz Kylheku
2022-05-06
1
-2
/
+6
*
Fix lagging redraw upon resume from background.
Kaz Kylheku
2022-05-06
1
-1
/
+1
*
Show display params with Ctrl-G; restore with -p option.
Kaz Kylheku
2022-05-06
1
-4
/
+56
*
Result messages persist until key hit.
Kaz Kylheku
2022-05-06
1
-1
/
+3
*
Clip vertical splits correctly when line numbers turned on.
Kaz Kylheku
2022-05-06
1
-9
/
+20
*
Left and right separator indistinguishable when alone.
Kaz Kylheku
2022-05-06
1
-6
/
+6
*
Draw left bars even when there is no left pane.
Kaz Kylheku
2022-05-06
1
-2
/
+4
*
Removal of dubious addch(line, 0) caused crash.
Kaz Kylheku
2022-05-06
1
-0
/
+8
*
New { } commands to reposition middle pane origin.
Kaz Kylheku
2022-05-06
1
-0
/
+12
*
Limit scrolling to max line length, not arbitrary 10000.
Kaz Kylheku
2022-05-06
1
-1
/
+1
*
Remove dubious addch(line, 0) and compensating hack elsewhere.
Kaz Kylheku
2022-05-06
1
-2
/
+1
*
The [ ], < > commands take count.
Kaz Kylheku
2022-05-06
1
-21
/
+21
*
Nuke most unsigned int.
Kaz Kylheku
2022-05-06
1
-23
/
+22
*
Exchange [ ] and < > commands.
Kaz Kylheku
2022-05-06
1
-4
/
+4
*
Don't change middle pane origin and width when moving left split.
Kaz Kylheku
2022-05-06
1
-8
/
+3
*
Rewrite buggy middle pane logic.
Kaz Kylheku
2022-05-06
1
-47
/
+24
*
Fix pane display bugs.
Kaz Kylheku
2022-05-06
1
-6
/
+39
*
Adjust or hide panes on window resize.
Kaz Kylheku
2022-05-06
1
-0
/
+7
[next]