mawww / kakoune

mawww's experiment for a better code editor
http://kakoune.org
The Unlicense
9.83k stars 710 forks source link

A: to end of line in yaml file followed by <space> and <c-r> eats spaces. #3117

Open vbauerster opened 4 years ago

vbauerster commented 4 years ago

In yaml file, appending to end of line A, followed by <space> and <c-r>" eats spaces. Suppose register " contains Bold and given following yaml file:

font:
  bold:
    family: Iosevka
    style: Iosevka

Go to last line press A<space><c-r>"

Expected:

font:
  bold:
    family: Iosevka
    style: Iosevka Bold

Got:

font:
  bold:
    family: Iosevka
    style: IosevkaBold

First I thought, it's some plugin in my kakrc. But then I removed my kakrc file and nothing changed.

vbauerster commented 4 years ago

possibly related #2020