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
When typing @use 'src/styles/, I want to see files I can use. Is there supported?
Looks like this myst work with Import suggestions feature. I can see pkg: imports works when I type @use 'pkg:, but I expect completion for all somesass.workspace.importAliases and/or somesass.workspace.loadPaths as well.
I'm new to VS Code, maybe I configured something wrong?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When typing
@use 'src/styles/, I want to see files I can use. Is there supported?Looks like this myst work with Import suggestions feature. I can see pkg: imports works when I type
@use 'pkg:, but I expect completion for allsomesass.workspace.importAliasesand/orsomesass.workspace.loadPathsas well.I'm new to VS Code, maybe I configured something wrong?
Here's my `settings.json`
{ "editor.fontSize": 16, "editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace", "somesass.workspace.loadPaths": [ "." ], "stylelint.validate": [ "css", "postcss", "scss" ], "somesass.scss.colors.includeFromCurrentDocument": true, "somesass.scss.completion.css": true, "somesass.scss.completion.includeFromCurrentDocument": true, "somesass.scss.diagnostics.lint.enabled": true, "somesass.scss.documentSymbols.enabled": true, "somesass.scss.highlights.enabled": true, "somesass.scss.foldingRanges.enabled": true, "somesass.scss.hover.documentation": true, "somesass.scss.links.enabled": true, "somesass.scss.selectionRanges.enabled": true, "somesass.scss.completion.enabled": true, "somesass.css.definition.enabled": true, "somesass.css.diagnostics.enabled": true, "somesass.css.codeAction.enabled": true, "somesass.css.colors.enabled": true, "somesass.css.completion.enabled": true, "somesass.css.documentSymbols.enabled": true, "somesass.css.foldingRanges.enabled": true, "somesass.css.highlights.enabled": true, "somesass.css.hover.enabled": true, "somesass.css.links.enabled": true, "somesass.css.references.enabled": true, "somesass.css.rename.enabled": true, "somesass.css.selectionRanges.enabled": true, "somesass.css.signatureHelp.enabled": true, "somesass.css.workspaceSymbol.enabled": true }Beta Was this translation helpful? Give feedback.
All reactions