xaizek / vifm-pdcurses (License: mostly public domain) (since 2019-03-20)
PDCurses 3.4 with vifm-specific patches applied (a couple were upstreamed)
Commit 025a99adff9784dd8582f12b6fd3069454332917

Make is_termresized() work on Windows
Author: xaizek
Author date (UTC): 2024-03-24 22:12
Committer name: xaizek
Committer date (UTC): 2024-03-24 22:12
Parent(s): 020f3950372b90240c88882193a8c75887ad54ae
Signing key: 99DC5E4DB05F6BE2
Tree: 25a26150fcd277ef877eb997868c41d12b1dd001
File Lines added Lines deleted
pdcurses/initscr.c 3 1
File pdcurses/initscr.c changed (mode: 100644) (index 2fc135a1..3082ee9b)
... ... bool is_termresized(void)
349 349 { {
350 350 PDC_LOG(("is_termresized() - called\n")); PDC_LOG(("is_termresized() - called\n"));
351 351
352 return SP->resized;
352 return SP->resized
353 || SP->lines != PDC_get_rows()
354 || SP->cols != PDC_get_columns();
353 355 } }
354 356
355 357 const char *curses_version(void) const char *curses_version(void)
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm-pdcurses

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm-pdcurses

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master