diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-09 01:18:13 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-09 01:18:13 +0300 |
commit | fb2ba9d16c2954e63ee5257b59cf6e8572abde5e (patch) | |
tree | b39a06c0e6fd4db9252aad49607bc2b10170b902 | |
parent | 7c0e4fbb1d1f0d19d11c7417c55a305654ab1c83 (diff) | |
download | sciteco-fb2ba9d16c2954e63ee5257b59cf6e8572abde5e.tar.gz |
fixup: <EI> command can be at-modified as in `@EI/foo/`
-rw-r--r-- | src/core-commands.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core-commands.c b/src/core-commands.c index b182f2e..7506e2e 100644 --- a/src/core-commands.c +++ b/src/core-commands.c @@ -2523,7 +2523,8 @@ teco_state_ecommand_input(teco_machine_main_t *ctx, gunichar chr, GError **error .modifier_at = TRUE, .modifier_colon = 1}, ['G'] = {&teco_state_egcommand, .modifier_at = TRUE, .modifier_colon = 1}, - ['I'] = {&teco_state_insert_nobuilding}, + ['I'] = {&teco_state_insert_nobuilding, + .modifier_at = TRUE}, ['M'] = {&teco_state_macrofile, .modifier_at = TRUE, .modifier_colon = 1}, ['N'] = {&teco_state_glob_pattern, |