Vim: find exactly starting spaces
For example if :
/^\s\{3\}\(\s\)\@!
The basic idea is to find 3 starting space:
^\s\{3\}
Not followed by space:
\(\s\)\@!
For example if :
/^\s\{3\}\(\s\)\@!
The basic idea is to find 3 starting space:
^\s\{3\}
Not followed by space:
\(\s\)\@!