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 e38f2b5340b709a4250e760f377a21c23dbb0ebd

Fix comments of 2 engine/cmds.h:cmd_info_t fields
They became outdated probably when post_name was introduced.
Author: xaizek
Author date (UTC): 2025-07-01 12:09
Committer name: xaizek
Committer date (UTC): 2025-07-01 12:24
Parent(s): 9937cef4dc2ea6fe78492f674fc44a5c9f7c8006
Signing key: 99DC5E4DB05F6BE2
Tree: 2ea622dfb2b0a767b4713603d877f8481336c64a
File Lines added Lines deleted
src/engine/cmds.h 3 3
File src/engine/cmds.h changed (mode: 100644) (index b9b72acd8..3255681b7)
... ... typedef struct cmd_info_t
90 90
91 91 char *post_name; /* Points to the first character after the name (optional ! char *post_name; /* Points to the first character after the name (optional !
92 92 or ? are considered part of the name). */ or ? are considered part of the name). */
93 char *raw_args; /* Arguments as they were passed in. */
94 char *args; /* Arguments after macro and envvar expansions (points into
95 raw_args buffer). */
93 char *raw_args; /* Arguments as they were passed in without truncation of
94 trailing whitespace (points into post_name buffer). */
95 char *args; /* Arguments after macro and envvar expansions. */
96 96 int argc; /* Number of arguments. */ int argc; /* Number of arguments. */
97 97 char **argv; /* Values of arguments. */ char **argv; /* Values of arguments. */
98 98 int (*argvp)[2]; /* Start/end positions of arguments in args. */ int (*argvp)[2]; /* Start/end positions of arguments in args. */
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