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?

link|improve this question

80% accept rate
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 7:16
feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
feedback

I found this solution to work for me:

:inoremap <Return> <Space><BS><Return>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.