The regular f and t motions work, as does selection with vf and vt. However, for some reason, df and dt delete one character too little compared to the actual built-in motions.
For example, assuming ^ is the cursor position:
foobar
^
Pressing dfb results in:
bar
^
Which is wrong, because the "b" should also have been deleted. Similarly, pressing dtb instead results in:
obar
^
But it should have deleted every character up until the "b".
Basically when using d*, both motions are deleting 1 character too little.
With the following configuration:
The regular
f
andt
motions work, as does selection withvf
andvt
. However, for some reason,df
anddt
delete one character too little compared to the actual built-in motions.For example, assuming
^
is the cursor position:Pressing
dfb
results in:Which is wrong, because the "b" should also have been deleted. Similarly, pressing
dtb
instead results in:But it should have deleted every character up until the "b".
Basically when using
d*
, both motions are deleting 1 character too little.