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

Make is_termresized() work on Windows
Author: xaizek
Author date (UTC): 2024-12-19 16:07
Committer name: xaizek
Committer date (UTC): 2024-12-19 16:08
Parent(s): f2149a569dce73c7ce40d82307b04f67c279b4e3
Signing key: 99DC5E4DB05F6BE2
Tree: 20146629011395399667f1ef85d446013afe666a
File Lines added Lines deleted
pdcurses/initscr.c 3 1
File pdcurses/initscr.c changed (mode: 100644) (index efa5cc62..ac98bf61)
... ... bool is_termresized(void)
342 342 { {
343 343 PDC_LOG(("is_termresized() - called\n")); PDC_LOG(("is_termresized() - called\n"));
344 344
345 return SP->resized;
345 return SP->resized
346 || SP->lines != PDC_get_rows()
347 || SP->cols != PDC_get_columns();
346 348 } }
347 349
348 350 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