Vim in vs code, delete till end of line exclusive not working (`dv$`)
Emily Wong
I found this answer which suggests to use dv$ to delete until the end of the line except the last character (this is quite useful for python if statements). It works in vim but it doesn't work in vs code with vim extension can this be fixed?
1 Answer
There is an open issue for this.
As suggested by @mattb in the comment, dt: is a good enough workaround for deleting the rest of a python if statement line.