17 Oct 2024 | |||
patrickb | Oh, there also a Terminal-Widgets TerminalEmulator.rakumod widget. | 21:43 | |
Next immediate todos: Implement changing the PTY window size and making it work on Windows, MacOS, OpenBSD. | 21:45 | ||
18 Oct 2024 | |||
japhb | Wow, patrickb, Awesome work! | 01:35 | |
Geth | Terminal-ANSIParser/main: 4acf3773ae | (Patrick Böker)++ | lib/Terminal/ANSIParser.rakumod Allow terminating OSC strings with BEL as well XTerm accepts it and applications send it. See invisible-island.net/xterm/ctlseqs...m-Commands |
22:08 | |
Terminal-ANSIParser/main: 35e21cd4e6 | (Geoffrey Broadwell)++ (committed using GitHub Web editor) | lib/Terminal/ANSIParser.rakumod Merge pull request #2 from patrickbkr/patrickb-OSC-BEL-termination Allow terminating OSC strings with BEL as well |
|||
Terminal-ANSIParser/main: 4 commits pushed by (Geoffrey Broadwell)++ | 23:05 | ||
Terminal-ANSIParser/main: dd78c33cf9 | (Geoffrey Broadwell)++ | .github/workflows/test.yml Drop CI testing for several-year-old Rakudos |
23:08 | ||
Terminal-ANSIParser/main: d8173e5ea1 | (Geoffrey Broadwell)++ | .github/workflows/test.yml Bump to actions/checkout@v4 to silence CI warning |
23:12 | ||
Terminal-ANSIParser/main: 12e33683b1 | (Geoffrey Broadwell)++ | .github/workflows/test.yml Disable Windows CI to debug CI failure |
23:27 | ||
Terminal-ANSIParser/main: 1df98886c1 | (Geoffrey Broadwell)++ | 3 files 0.0.4 |
23:37 | ||
Terminal-LineEditor/main: f822e98c1c | (Patrick Böker)++ | 2 files Make the dependency chain free of native code This means that installing this module won't require a C compiler toolchain anymore. Do so by replacing Term::termios with Terminal::MakeRaw. |
23:52 | ||
Terminal-LineEditor/main: 9b51c78938 | (Geoffrey Broadwell)++ (committed using GitHub Web editor) | 2 files Merge pull request #6 from patrickbkr/patrickb/makeraw Make the dependency chain free of native code |
|||
19 Oct 2024 | |||
Terminal-LineEditor/main: 8000547c7d | (Geoffrey Broadwell)++ | 2 files Update copyright years |
00:02 | ||
Terminal-LineEditor/main: 80a9bbd917 | (Geoffrey Broadwell)++ | Changes Update Changes for Terminal::MakeRaw change |
|||
Terminal-LineEditor/main: 0fda5facfc | (Geoffrey Broadwell)++ | 4 files 0.0.17 |
00:04 | ||
6 Nov 2024 | |||
patrickb | I'm wondering: Terminal-Print is only using a hand full of commands. My impression is that in today's time terminals are pretty much standardized. Could we just hard code the VT sequences for those few commands? That would rid us of our dependency on tput, curses and termcap/terminfo. | 14:19 | |
Oh, ab5tract is not lurking here... | 14:20 | ||
japhb | I have co-maint on T-P, FWIW. | 15:22 | |
Personally I have no objection to hardcoding the ANSI sequences, but that doesn't actually obviate tput without changing the architecture a bit -- there still needs to be a way to pull the terminal size. | 15:24 | ||
patrickb | Hi japhb! Always nice reading you. | ||
japhb | :-D | 15:25 | |
Ditto | |||
patrickb | Btw. I have changing the PTY size implemented. Next on my list: Porting all of the Terminal stuff over to Windows. | 15:26 | |
japhb | So ... T-LE and T-W just directly query the terminal for its size, but T-P wasn't originally written with query capability, and was output only. The ability to handle input at all was added later, but T-P remained procedural rather than event driven in general. | 15:28 | |
Go patrickb! | |||
(Of course, under *nix you can ask the terminal *driver* via API about the current terminal size, but that requires POSIX, so was considered less portable.) | 15:30 | ||
Your efforts to switch out Term::termios for Terminal::MakeRaw indicate it would probably be viable to just do the same thing with the terminal size API anyway .... | 15:32 | ||
The terminal landscape is indeed rather different than it once was. At this point I guess there's only ANSI for in-stream commands and POSIX or Windows for out-of-stream API. | 15:33 | ||
patrickb | Yes, I'd think the same. | 15:53 | |
japhb | Responded to your set-span-sgr PR | 23:00 | |
patrickb: ^^ and also: Want to make a Terminal::Size module or so? | 23:01 |