What happened to yaml editing in 2018?
Answered
There seems to be some very different behavior's wrt to yaml in 2018. For example
given
- name: Check for foobar
fail: msg="..."
when: check == true
With the cursor at the 'n' in name, hit return, I would expect the result to be
-
name: Check for foobar
fail: msg="..."
when: check == true
But instead it is this with the cursor still just before the 'n' in name
name: Check for foobar
fail: msg="..."
when: check == true
Super annoying. Is this a bug or some new assumption on syntax?
Please sign in to leave a comment.
Here's another example
I have
The cursor is on the end of the `-include_tasks` line. I hit enter and get
When I expect
Looks like https://youtrack.jetbrains.com/issue/RUBY-22590.
Thanks Serge