Hi! I don’t know where to ask this..
I’ve been experiencing weird behavior in the code editor recently.
When I’m typing in a custom css file, the code editor is tabbing new lines- adding two spaces before the text on a new line. For a long time it would do this before new rules, and that’s fine. Makes everything easy to read. But now it’s adding spaces to new statements.. the result looks like the following (dashes represent spaces):
.thing1 {
–rule: rule;
–rule: rule;
}
–
–
–.thing2 {
----rule.rule;
–}
----.thing3 {
------rule: rule;
----}
------ etc..
and I’m worried that eventually I’ll run right off the side of the page.. and if I want to quickly delete a line with backspace, I have to delete however many spaces the code editor decides to insert..
I’ve checked for unclosed brackets and other errors, everything looks ok. I’ve also refreshed the page to reload the editor- no change.
It’s not affecting the code itself, but it’s irritating.
Any ideas?