xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit a1c5d350a5971216a3fb57d6fd10f29f0aa510c4

Remove always true condition in launch_external()
startup.hStdInput can't be equal to INVALID_HANDLE_VALUE with current
code, the check is probably a leftover from some older version.
Author: xaizek
Author date (UTC): 2024-03-05 09:46
Committer name: xaizek
Committer date (UTC): 2024-03-11 17:30
Parent(s): ccb94e99741b1d1983f48572451879cbd0088333
Signing key: 99DC5E4DB05F6BE2
Tree: 2737337e85b95282fc28a6bc491fcd2fb11ba752
File Lines added Lines deleted
src/background.c 1 4
File src/background.c changed (mode: 100644) (index 3405a0104..3d31f7700)
... ... launch_external(const char cmd[], BgJobFlags flags, ShellRequester by)
1184 1184 NULL, NULL, &startup, &pinfo); NULL, NULL, &startup, &pinfo);
1185 1185 free(wide_cmd); free(wide_cmd);
1186 1186 CloseHandle(hnul); CloseHandle(hnul);
1187 if(startup.hStdInput != INVALID_HANDLE_VALUE)
1188 {
1189 CloseHandle(startup.hStdInput);
1190 }
1187 CloseHandle(startup.hStdInput);
1191 1188 CloseHandle(startup.hStdOutput); CloseHandle(startup.hStdOutput);
1192 1189 if(startup.hStdError != startup.hStdOutput) if(startup.hStdError != startup.hStdOutput)
1193 1190 { {
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

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

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