forked from aniani/vim
updated for version 7.4.212
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
This commit is contained in:
@@ -3456,12 +3456,9 @@ setmouse()
|
||||
return;
|
||||
}
|
||||
|
||||
# ifdef FEAT_VISUAL
|
||||
if (VIsual_active)
|
||||
checkfor = MOUSE_VISUAL;
|
||||
else
|
||||
# endif
|
||||
if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
|
||||
else if (State == HITRETURN || State == ASKMORE || State == SETWSIZE)
|
||||
checkfor = MOUSE_RETURN;
|
||||
else if (State & INSERT)
|
||||
checkfor = MOUSE_INSERT;
|
||||
|
||||
Reference in New Issue
Block a user