forked from aniani/vim
patch 9.1.0007: can select empty inner text blocks
Problem: can select empty inner text blocks (laurentalacoque) Solution: make selecting empty inner text blocks an error textobjects: Make selecting inner empty blocks an error fixes: #13514 closes: #13523 Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -1131,6 +1131,11 @@ current_block(
|
||||
break;
|
||||
}
|
||||
|
||||
if (EQUAL_POS(start_pos, *end_pos))
|
||||
// empty block like this: ()
|
||||
// there is no inner block to select, abort
|
||||
return FAIL;
|
||||
|
||||
/*
|
||||
* In Visual mode, when the resulting area is not bigger than what we
|
||||
* started with, extend it to the next block, and then exclude again.
|
||||
|
Reference in New Issue
Block a user