Re: inclusive regexp/yanking
In vim, the e modifier to a regular expression when using the regexp as a range will include the match in the range, so for example, when yanking, it will yank from the cursor up to and including the matched expression; ie, given:
Hello there everybody!
With the cursor at the beginning of the line, y/everybody/e will yank "Hello there everybody".
ViEmu doesn't seem to support this.