Currently all forward-moving SearchType variants result in inclusive ranges from the current cursor position to the start of the search object, but this only actually matters for SearchType::Char. SearchType::Regex and SearchType::Word should be done exclusively so that the first character of the match isn't included when doing things like d/ or some other operation.
Currently all forward-moving
SearchType
variants result in inclusive ranges from the current cursor position to the start of the search object, but this only actually matters forSearchType::Char
.SearchType::Regex
andSearchType::Word
should be done exclusively so that the first character of the match isn't included when doing things liked/
or some other operation.