Anton Rapetov
Anton Rapetov
Original pull request: https://github.com/extrawurst/gitui/pull/506 I've fixed the following comments: 1. https://github.com/extrawurst/gitui/pull/506#discussion_r606654156 2. https://github.com/extrawurst/gitui/pull/506#discussion_r606653856 3. https://github.com/extrawurst/gitui/pull/506#discussion_r606654257 Please let me know whether those fixes are enough. I'm also not sure whether this...
Add support for the following syntax: 1. -SIG_NUM 2. -SIG_NAME 3. -s SIG_NAME 4. -l 5. -l SIG_NUM ... 6. -l SIG_NAME ...
Hi, thanks for the great library. I have a question. As far as I understand, when you run commands via `local` object, they read environ from frozen `local.env` object. Is...
Hi, thanks for the great library. I have a question - is it possible to set `PR_SET_PDEATHSIG` on Linux for all running commands? When I use subprocess myself, I do...
If you compile the following code: ```cpp struct Foo { int get_num_field(int v) { return v; } }; int get_num(int a) { return Foo().get_num_field(a); } ``` with: `clang -O3 -fclangir...