matze / vim-move

Plugin to move lines and selections up and down
http://www.vim.org/scripts/script.php?script_id=4687
MIT License
1.2k stars 56 forks source link

Moving block including indents #40

Closed tom-adsfund closed 4 years ago

tom-adsfund commented 4 years ago

If I have something like below and try to move lines 2-3 together, they will not maintain the indents -- 3 will be moved to the level of 2. The level difference should be maintained.

1
   2
      3
4

When I'm working with indented notes maintaining level differences is essential.

hugomg commented 4 years ago

As a workaround, you can disable the automatic indentation feature.

    let g:move_auto_indent = 0
tom-adsfund commented 4 years ago

@matze Great, thanks!

matze commented 4 years ago

Don't thank me, thank @hugomg who is implementing a ton of awesome improvements.

tom-adsfund commented 4 years ago

@matze Sure. Thanks @hugomg !!!