vim: how to delete spaces till the first character?

vim

Solution

dw

Will delete all the whitespace if you're on the first column.

Problem

I have a line like this: ``` foobar ``` as you can see there are many spaces between the first column and 'foobar'. If I have the cursor in the first column, is there any key binding to remove the spaces till 'foobar'?

Original source