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
I have an issue with expanding snippets in CSS mode. After I run emmet-expand-line with the "C-j" binding, the expected behavior would be to position the cursor at an edit point in the expansion, but instead it puts it at the end of a line. For example, after running emmet-expand-line on bg, you would expect background-color #|000;
but instead you get backgound-color #000;|
where the cursor is at the back. Is this expected behavior? Going through the package files the line for this expansion looks like (puthash "bg" "background:#${1:000};" tbl)
so it looks like there's supposed to be some sort of replacement happening but it's not working.
The text was updated successfully, but these errors were encountered:
Same issue in html. they say to customize the variable emmet-move-cursor-between-quotes, however nothing changes, it still puts the cursor in between the tags instead of the first attribute with empty quotes
I have an issue with expanding snippets in CSS mode. After I run emmet-expand-line with the "C-j" binding, the expected behavior would be to position the cursor at an edit point in the expansion, but instead it puts it at the end of a line. For example, after running emmet-expand-line on bg, you would expect
background-color #|000;
but instead you get
backgound-color #000;|
where the cursor is at the back. Is this expected behavior? Going through the package files the line for this expansion looks like
(puthash "bg" "background:#${1:000};" tbl)
so it looks like there's supposed to be some sort of replacement happening but it's not working.
The text was updated successfully, but these errors were encountered: