Hi,

It seems that the behavior of the o key in normal state is a bit
different from Vim.  Suppose you have the following text in a file,
where '$' indicates the end of a line and not a literal '$' character:

foo$
    bar$

Then, positioning the cursor on the second line in Vim's normal mode and
typing o results in the following:

foo$
    bar$
    $

Now, typing RET results in the following:

foo$
    bar$
$
    $

On the other hand, in evil-mode you have this:

foo$
    bar$

↓

foo$
    bar$
    $

↓

foo$
    bar$
    $
$

Is this a bug?

Thanks,
    Keshav


_______________________________________________
implementations-list mailing list
[email protected]
https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list

Reply via email to