Search code examples
vimvim-plugin

Adjusting all line to Left side of the file in gvim


I'm new to the vim editor.

How can I adjust all lines to the left? I have many lines which are indented and I want to arrange them so they all abut the left side of the file (no spacing at the start of the lines).


Solution

  • Select all line in visual mode and then type :left . Hope this helped.

    keerthan