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 |
{ |
{ |