mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.1901: the +insert_expand feature is not always available
Problem: The +insert_expand feature is not always available. Solution: Graduate the +insert_expand feature.
This commit is contained in:
@@ -4110,7 +4110,6 @@ in_cinkeys(
|
||||
{
|
||||
int match = FALSE;
|
||||
|
||||
#ifdef FEAT_INS_EXPAND
|
||||
if (keytyped == KEY_COMPLETE)
|
||||
{
|
||||
char_u *s;
|
||||
@@ -4140,7 +4139,6 @@ in_cinkeys(
|
||||
match = TRUE;
|
||||
}
|
||||
else
|
||||
#endif
|
||||
// TODO: multi-byte
|
||||
if (keytyped == (int)p[-1] || (icase && keytyped < 256
|
||||
&& TOLOWER_LOC(keytyped) == TOLOWER_LOC((int)p[-1])))
|
||||
|
Reference in New Issue
Block a user