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 1c50b3ddda43251f3facdb445ce0d2de53d6f7c6

Fix :restart not resetting abbreviations
Author: xaizek
Author date (UTC): 2025-03-25 19:10
Committer name: xaizek
Committer date (UTC): 2025-03-25 19:10
Parent(s): f605fc4c98a84af8d7b4d19d84fa715029eafffc
Signing key: 99DC5E4DB05F6BE2
Tree: fb1c9516739a4897867670fe6bce550e83fe1e6d
File Lines added Lines deleted
ChangeLog 2 0
src/instance.c 4 0
tests/commands/restart.c 14 0
File ChangeLog changed (mode: 100644) (index 9bf938960..65df35988)
26 26 Fixed trailing slash at the bottom of overwrite confirmation dialog Fixed trailing slash at the bottom of overwrite confirmation dialog
27 27 displayed on merging directories. displayed on merging directories.
28 28
29 Fixed :restart not resetting abbreviations.
30
29 31 0.14-beta to 0.14 (2025-02-08) 0.14-beta to 0.14 (2025-02-08)
30 32
31 33 Improved documentation on zh/zl menu keys a bit. Improved documentation on zh/zl menu keys a bit.
File src/instance.c changed (mode: 100644) (index b5e35b9b0..97984e7e6)
20 20 #include "instance.h" #include "instance.h"
21 21
22 22 #include "cfg/config.h" #include "cfg/config.h"
23 #include "engine/abbrevs.h"
23 24 #include "engine/autocmds.h" #include "engine/autocmds.h"
24 25 #include "engine/cmds.h" #include "engine/cmds.h"
25 26 #include "engine/keys.h" #include "engine/keys.h"
 
... ... instance_start_restart(void)
66 67 /* Autocommands. */ /* Autocommands. */
67 68 vle_aucmd_remove(NULL, NULL); vle_aucmd_remove(NULL, NULL);
68 69
70 /* Abbreviations. */
71 vle_abbr_reset();
72
69 73 /* All kinds of histories. */ /* All kinds of histories. */
70 74 cfg_clear_histories(tabs_count(&lwin) == 0 && tabs_count(&rwin) == 0); cfg_clear_histories(tabs_count(&lwin) == 0 && tabs_count(&rwin) == 0);
71 75 /* Load new history size into options unit, a possibly more reliable /* Load new history size into options unit, a possibly more reliable
File tests/commands/restart.c changed (mode: 100644) (index d325b1189..dd6d15038)
3 3 #include <test-utils.h> #include <test-utils.h>
4 4
5 5 #include "../../src/cfg/config.h" #include "../../src/cfg/config.h"
6 #include "../../src/engine/abbrevs.h"
6 7 #include "../../src/engine/keys.h" #include "../../src/engine/keys.h"
7 8 #include "../../src/ui/fileview.h" #include "../../src/ui/fileview.h"
8 9 #include "../../src/ui/column_view.h" #include "../../src/ui/column_view.h"
 
... ... TEST(full_restart_drops_tabs)
133 134 assert_int_equal(1, tabs_count(&lwin)); assert_int_equal(1, tabs_count(&lwin));
134 135 } }
135 136
137 TEST(restart_resets_abbreviations)
138 {
139 assert_success(cmds_dispatch("cabbrev lhs rhs", &lwin, CIT_COMMAND));
140
141 assert_success(cmds_dispatch("restart", &lwin, CIT_COMMAND));
142
143 void *state = NULL;
144 const wchar_t *lhs, *rhs;
145 const char *descr;
146 int no_remap = -1;
147 assert_false(vle_abbr_iter(&lhs, &rhs, &descr, &no_remap, &state));
148 }
149
136 150 static void static void
137 151 setup_tabs(void) setup_tabs(void)
138 152 { {
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