mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 7.4.793
Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt)
This commit is contained in:
@@ -900,7 +900,7 @@ getcmdline(firstc, count, indent)
|
||||
firstc != '@');
|
||||
}
|
||||
else
|
||||
vim_beep();
|
||||
vim_beep(BO_WILD);
|
||||
}
|
||||
#ifdef FEAT_WILDMENU
|
||||
else if (xpc.xp_numfiles == -1)
|
||||
@@ -3710,7 +3710,7 @@ ExpandOne(xp, str, orig, options, mode)
|
||||
if (i < xp->xp_numfiles)
|
||||
{
|
||||
if (!(options & WILD_NO_BEEP))
|
||||
vim_beep();
|
||||
vim_beep(BO_WILD);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user