8

In some text editors (e.g. Kate, gedit), when auto indent is enabled, pressing return twice will leave a trailing whitespace (which I want):

if (code) {
....
....|
}

While others cater to the coding standard where trailing spaces (even in blank lines) aren't allowed:

if (code) {

....|
}

What annoys me about this is that if I arrow up after auto-indenting, the auto-indent is lost:

if (code) {
|
....
}

If I run vim and :set autoindent , I get the latter behavior.

My question is, how do I set vim to keep the trailing spaces rather than automatically removing them if they go unused?

Joey Adams
  • 2,278
  • 3
  • 21
  • 25
  • 2
    My initial reaction is that you're doing it wrong. By leaving blank lines indented like that you kill the possibility to use `{` or `}` (e.g. `d{` etc). – hlovdal Oct 24 '11 at 07:16

3 Answers3

3

See this hint on the vim wiki for how to have correct indention even for empty lines. If you just want to keep the previous indent (ignoring what vim calculated as the correct indent) use let ind = indent(prevnonblank(v:lnum - 1)) like explained in a comment under the same wiki entry.

Benjamin Bannier
  • 16,044
  • 3
  • 43
  • 41
1

I found this solution to work for me:

:inoremap <Return> <Space><BS><Return>
Xiong Chiamiov
  • 966
  • 8
  • 11
0

In my .vimrc:

" Change a blank line upon creation so that its leading spaces won't be removed
inoremap <Return> <Return><Space><BS>
nnoremap o o<Space><BS>
nnoremap O O<Space><BS>
Tom Hale
  • 2,274
  • 2
  • 24
  • 35