mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
vim-patch:8.1.1746: ":dl" is seen as ":dlist" instead of ":delete"
Problem: ":dl" is seen as ":dlist" instead of ":delete".
Solution: Do not use cmdidxs2[] if the length is 1. (closes vim/vim#4721)
94f82cbacf
This commit is contained in:
@@ -2451,7 +2451,7 @@ static char_u *find_command(exarg_T *eap, int *full)
|
||||
|
||||
if (ASCII_ISLOWER(eap->cmd[0])) {
|
||||
const int c1 = eap->cmd[0];
|
||||
const int c2 = eap->cmd[1];
|
||||
const int c2 = len == 1 ? NUL : eap->cmd[1];
|
||||
|
||||
if (command_count != (int)CMD_SIZE) {
|
||||
iemsg((char *)_("E943: Command table needs to be updated, run 'make'"));
|
||||
|
Reference in New Issue
Block a user