Recent changes in evil-mode broke selection of text object which can span multiple lines. For example selection of function definitions or lists .
evil-select-inner-object was "optimized" to restrict selection to current line. There is a new function evil-select-inner-unrestricted-object which provides original functionality.
This patch fixes selection in lispyville multi-line text objects by replacing evil-select-inner-object with new unrestricted variant.
Recent changes in
evil-mode
broke selection of text object which can span multiple lines. For example selection of function definitions or lists .evil-select-inner-object
was "optimized" to restrict selection to current line. There is a new functionevil-select-inner-unrestricted-object
which provides original functionality.This patch fixes selection in lispyville multi-line text objects by replacing
evil-select-inner-object
with new unrestricted variant.