You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The files i'm working with the newlines are CR LF (windows) and i'm using tabs for indentation
when expanding any element over multiple lines it's adding extra newlines and losing the indentation after the first element (as the tabs are before the extra newline) i.e:
(tab)(tab)div*3
then generates exactly:
(tab)(tab)div/divCRLF
(tab)(tab)CRLF
div/divCRLF
(tab)(tab)CRLF
div/divCRLF
CRLF
had to modify the div's github doesn't seem to like them when written as proper tags in that format
The text was updated successfully, but these errors were encountered:
So it seems like the only problem is that it's adding extra line breaks...the indends are there, they're just not REALLY there because there's a line break between the indents and the code on each line. So if we can get the line breaks problem worked out we should be good.
I'm not sure that I'm going to be much help with this. I don't have a Windows box to test on and I can't reproduce on Linux. With your last update you said that sometimes it works fine, so if you're able to make a scenario where it always doesn't work, then let me know and I'll try and get my hands on a Windows box to test it out.
I tried the following abbreviation:
ul.column-holder.clearfix>li.column_3>h4+img_3
This adds the line breaks, and if I'm expanding this a few indents in, it will add the line break after the parent indent level.
Now if I break these into two different abbreviations:
ul.column-holder.clearfix
li.column_3>h4+img_3
and expand the second abbreviation inside the expanded first abbreviation, it works as expected.
Let me know if you need a guinea pig, or if I ever get around to learning some Python, I can fork and see what I can do. :)
The files i'm working with the newlines are CR LF (windows) and i'm using tabs for indentation
when expanding any element over multiple lines it's adding extra newlines and losing the indentation after the first element (as the tabs are before the extra newline) i.e:
(tab)(tab)div*3
then generates exactly:
(tab)(tab)div/divCRLF
(tab)(tab)CRLF
div/divCRLF
(tab)(tab)CRLF
div/divCRLF
CRLF
had to modify the div's github doesn't seem to like them when written as proper tags in that format
The text was updated successfully, but these errors were encountered: