user674669
user674669

Reputation: 12412

delete till the end of line (exclusive of current letter)

I know d$ or D will delete till the end of line including the letter on the cursor? Is there a way to do this excluding the letter on the cursor? I did :h d in vim and browsed around a bit but couldn't find if this is possible. I am trying to do this in AppCode with IdeaVim plugin.

Upvotes: 7

Views: 3675

Answers (1)

src
src

Reputation: 281

In normal mode, you could do lD or ld$.

Upvotes: 12

Related Questions