Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Exchange [ ] and < > commands. | Kaz Kylheku | 2022-05-06 | 2 | -8/+8 | |
| | ||||||
* | 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 | |
| | ||||||
* | README: code has grown a bit. | Kaz Kylheku | 2022-05-06 | 1 | -1/+1 | |
| | ||||||
* | Toggle highlighting of marker chars. | Kaz Kylheku | 2022-05-06 | 2 | -6/+45 | |
| | ||||||
* | New feature: double vertical split. | Kaz Kylheku | 2022-05-05 | 2 | -14/+148 | |
| | ||||||
* | Refactoring post: split long lines. | Kaz Kylheku | 2022-05-05 | 1 | -8/+18 | |
| | ||||||
* | Refactoring: some vars moved into pwstate struct. | Kaz Kylheku | 2022-05-05 | 1 | -196/+201 | |
| | | | | | | The variables that are being passed around are moved into an object, to reduce the number of parameters being passed around. | |||||
* | README: Try to add PlantUML State Diagram. | Kaz Kylheku | 2022-05-04 | 1 | -0/+4 | |
| | ||||||
* | README: improved wording about background operation. | Kaz Kylheku | 2022-05-04 | 1 | -2/+3 | |
| | ||||||
* | Man page: new BUGS entry about those zero line numbers. | Kaz Kylheku | 2022-05-04 | 1 | -0/+7 | |
| | ||||||
* | Impose limit on maximum line length, controlled by option. | Kaz Kylheku | 2022-05-03 | 2 | -5/+38 | |
| | ||||||
* | Don't retrace if there are no lines to draw. | Kaz Kylheku | 2022-05-03 | 1 | -1/+1 | |
| | | | | | | In this case, things go funny because the ANSI escape sequence ^[[0A will still go up one line, in spite of the zero. | |||||
* | Line number cosmetic issue. | Kaz Kylheku | 2022-05-03 | 1 | -2/+2 | |
| | | | | | | When the FIFO isn't full, we output lines. In numbered mode, line numbers aren't printed, so things look funny. Let's print zeros. These will refresh to the actual values. | |||||
* | Implement quit count safeguard. | Kaz Kylheku | 2022-05-03 | 2 | -3/+37 | |
| | ||||||
* | Bugfix: stat_force not stat_dirty to display cmd result. | Kaz Kylheku | 2022-05-03 | 1 | -1/+1 | |
| | ||||||
* | New -g option to pre-load the grep stack. | Kaz Kylheku | 2022-05-03 | 2 | -1/+86 | |
| | ||||||
* | Ctrl-L refresh. | Kaz Kylheku | 2022-05-03 | 2 | -0/+5 | |
| | ||||||
* | Keep taking snapshots in background. | Kaz Kylheku | 2022-05-03 | 1 | -3/+3 | |
| | ||||||
* | README tweaking. | Kaz Kylheku | 2022-05-03 | 1 | -25/+28 | |
| | ||||||
* | Relax restrictions on stdout; improve error reporting. | Kaz Kylheku | 2022-05-02 | 2 | -29/+27 | |
| | ||||||
* | Remove non-interactive mode. | Kaz Kylheku | 2022-05-02 | 2 | -74/+92 | |
| | ||||||
* | On EOF, don't call redraw, but only drawstatus. | Kaz Kylheku | 2022-05-02 | 1 | -2/+3 | |
| | | | | | EOF is not an event which triggers an update. We want to show EOF in the status line, if not auto-exiting. | |||||
* | Ensure clrline calls observe background mode. | Kaz Kylheku | 2022-05-02 | 1 | -9/+10 | |
| | ||||||
* | Don't touch tty if exiting while backgrounded. | Kaz Kylheku | 2022-05-02 | 1 | -3/+8 | |
| | ||||||
* | New feature: read input if executing in background. | Kaz Kylheku | 2022-05-02 | 2 | -23/+85 | |
| | ||||||
* | README: adjust fit of video frame. | Kaz Kylheku | 2022-05-02 | 1 | -1/+1 | |
| | ||||||
* | Improve README. | Kaz Kylheku | 2022-05-02 | 1 | -20/+52 | |
| | ||||||
* | Add forgotten copyright block to C source. | Kaz Kylheku | 2022-05-02 | 2 | -1/+28 | |
| | ||||||
* | More description in README. | Kaz Kylheku | 2022-05-01 | 1 | -0/+12 | |
| | ||||||
* | Add markdown README. | Kaz Kylheku | 2022-05-01 | 1 | -0/+21 | |
| | ||||||
* | Fix null pointer deref in freebuf. | Kaz Kylheku | 2022-05-01 | 1 | -2/+3 | |
| | ||||||
* | Man page: + clears history and is disabled in history view. | Kaz Kylheku | 2022-05-01 | 1 | -0/+4 | |
| | ||||||
* | A bit more encapsulation for the regex handling. | Kaz Kylheku | 2022-05-01 | 1 | -41/+58 | |
| | ||||||
* | triggers: use dsref on dstr, not dsdup. | Kaz Kylheku | 2022-05-01 | 1 | -1/+1 | |
| | ||||||
* | Refactor: move regexec calls into function. | Kaz Kylheku | 2022-05-01 | 1 | -17/+14 | |
| | ||||||
* | New # command to toggle line numbers. | Kaz Kylheku | 2022-05-01 | 2 | -13/+43 | |
| | ||||||
* | Allow leading ! to invert trigger patterns. | Kaz Kylheku | 2022-05-01 | 2 | -10/+44 | |
| | ||||||
* | New feature: snapshot history. | Kaz Kylheku | 2022-05-01 | 2 | -41/+133 | |
| | ||||||
* | Fix memory leak when resizing line buffer down. | Kaz Kylheku | 2022-05-01 | 1 | -0/+3 | |
| | | | | Could happen when terminal window shrinks vertically. | |||||
* | Don't copy to snapshot when dirty flag is absent. | Kaz Kylheku | 2022-05-01 | 1 | -1/+1 | |
| | ||||||
* | New a, d commands to advance or delay triggers. | Kaz Kylheku | 2022-04-30 | 2 | -0/+38 | |
| | ||||||
* | Triggers: switch implementation to grep structs. | Kaz Kylheku | 2022-04-30 | 1 | -20/+32 | |
| | ||||||
* | Fix issues with the count prefix. | Kaz Kylheku | 2022-04-30 | 2 | -5/+13 | |
| | | | | | - ambiguity with 0 command. - reset to UINT_MAX under right conditions. | |||||
* | New feature: multi-line triggering. | Kaz Kylheku | 2022-04-30 | 2 | -62/+175 | |
| | ||||||
* | Commands can have numeric prefix: + is guinea pig for this. | Kaz Kylheku | 2022-04-30 | 2 | -13/+39 | |
| | ||||||
* | Regression: no redraw for horizontal scrolling. | Kaz Kylheku | 2022-04-30 | 1 | -1/+1 | |
| | ||||||
* | Use BRE by default, with optional ERE. | Kaz Kylheku | 2022-04-29 | 2 | -7/+49 | |
| |