Reputation: 1914
If you're using a Jetbrains IDE I just wanted to let you know the solution to a problem that took me forever to find.
You just can't type a "$". Like anywhere. In any kind of file.
You're writing a scss file and you want to define a variable ($var) with a value of 3.
Your goal is thus to write:
$var : 3;
So you type Shift + 4,var : 3;
expecting to get $var : 3, but what you get instead is:
var : 3;
Upvotes: 1
Views: 808
Reputation: 1914
If you're using this plugin: Extended Code Sense[1]
else
1. It is worth noting that the plugin has not been updated since 2010
Upvotes: 1