-
-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lg() not expanding #670
Comments
Looks like a bug, will check it out |
issue is still present. |
@sergeche the following test cases pass in our build it('gradient resolver', () => {
equal(expand('lg'), 'background-image: linear-gradient(${0});');
equal(expand('lg(to right, #0, #f00.5)'), 'background-image: linear-gradient(to right, #000, rgba(255, 0, 0, 0.5));');
}); The issue can still be reproduced in vscode, what I've observed is emmet suggestions stop after a round bracket. |
Yes, it’s VSCode implementation issue. Works fine in Sublime Text and CodeMirror. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
linear gradient in .css not expanding.
I'm using VS code. lg works -> background-image: linear-gradient();
but lg(...) does not. A have actually tried another editor a got the same result.
Am i doing something wrong?
The text was updated successfully, but these errors were encountered: