diff options
| author | Aidan Van Duyne <aidanvanduyne@gmail.com> | 2025-12-07 17:59:03 -0800 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2025-12-16 01:17:28 +0100 |
| commit | e97e326c161bbfd3b127526bace0b3574598415a (patch) | |
| tree | 156021acc97864525dce8c383642cfb023f8e7b7 /Src | |
| parent | 54147: avoid buffer overflow with terminal sequences (diff) | |
| download | zsh-e97e326c161bbfd3b127526bace0b3574598415a.tar zsh-e97e326c161bbfd3b127526bace0b3574598415a.tar.gz zsh-e97e326c161bbfd3b127526bace0b3574598415a.tar.bz2 zsh-e97e326c161bbfd3b127526bace0b3574598415a.tar.lz zsh-e97e326c161bbfd3b127526bace0b3574598415a.tar.xz zsh-e97e326c161bbfd3b127526bace0b3574598415a.tar.zst zsh-e97e326c161bbfd3b127526bace0b3574598415a.zip | |
54143: Bind '_' to vi-first-non-blank in vicmd keymap
Diffstat (limited to 'Src')
| -rw-r--r-- | Src/Zle/zle_bindings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_bindings.c b/Src/Zle/zle_bindings.c index 55863db1b..74a62ab4d 100644 --- a/Src/Zle/zle_bindings.c +++ b/Src/Zle/zle_bindings.c @@ -385,7 +385,7 @@ int vicmdbind[128] = { /* \ */ z_undefinedkey, /* ] */ z_undefinedkey, /* ^ */ z_vifirstnonblank, - /* _ */ z_undefinedkey, + /* _ */ z_vifirstnonblank, /* ` */ z_vigotomark, /* a */ z_viaddnext, /* b */ z_vibackwardword, |
