vscodeでsassのスニペットを作る際に少し困ったのでメモ。
sassだと変数は$で定義するので\\でエスケープする必要があります。
{
"variables": {
"prefix": "variables",
"body": [
"\\$variables"
],
"description": "variables"
}
}
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
vscodeでsassのスニペットを作る際に少し困ったのでメモ。
sassだと変数は$で定義するので\\でエスケープする必要があります。
{
"variables": {
"prefix": "variables",
"body": [
"\\$variables"
],
"description": "variables"
}
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked