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 af8dda5abaf4bd1045b5b36ef9ffbe2be907867e

Improve builtin description of :unlet
The command accepts multiple variable names at a time.
Author: xaizek
Author date (UTC): 2024-11-02 13:35
Committer name: xaizek
Committer date (UTC): 2024-11-02 13:37
Parent(s): 1e2df6a10de16e07e0fb9496df0701daa2f03629
Signing key: 99DC5E4DB05F6BE2
Tree: cb543115ea6b24f6c38063e8e0e6b8678af516ef
File Lines added Lines deleted
src/cmd_handlers.c 1 1
File src/cmd_handlers.c changed (mode: 100644) (index a617f7644..25c87e63c)
... ... const cmd_add_t cmds_list[] = {
921 921 .flags = HAS_EMARK | HAS_COMMENT, .flags = HAS_EMARK | HAS_COMMENT,
922 922 .handler = &undolist_cmd, .min_args = 0, .max_args = 0, }, .handler = &undolist_cmd, .min_args = 0, .max_args = 0, },
923 923 { .name = "unlet", .abbr = "unl", .id = COM_UNLET, { .name = "unlet", .abbr = "unl", .id = COM_UNLET,
924 .descr = "undefine variable",
924 .descr = "undefine one or more variables",
925 925 .flags = HAS_EMARK | HAS_COMMENT, .flags = HAS_EMARK | HAS_COMMENT,
926 926 .handler = &unlet_cmd, .min_args = 1, .max_args = NOT_DEF, }, .handler = &unlet_cmd, .min_args = 1, .max_args = NOT_DEF, },
927 927 { .name = "unmap", .abbr = "unm", .id = -1, { .name = "unmap", .abbr = "unm", .id = -1,
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