We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
VS Code 1.8.1 Windows 7
When I try to double click any of the variable names with a dollar sign ($) in my angular code the dollar sign is not beeing highlighted.
For example double clicking on $scope here only marks scope. $scope.data = data;
$scope.data = data;
Is there an easy fix for this?
The text was updated successfully, but these errors were encountered:
Interesting - the dollar sign is being tokenized as part of $scope, so not sure what's up.
@alexandrudima @rebornix - any ideas?
Sorry, something went wrong.
@stibay Please configure the setting editor.wordSeparators to your liking.
editor.wordSeparators
Here is the default (notice how $ is listed as a word separator):
$
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
Ah perfect 👍 Maybe that should be standard (like it's in Visual Studio)?
rebornix
alexdima
No branches or pull requests
VS Code 1.8.1
Windows 7
When I try to double click any of the variable names with a dollar sign ($) in my angular code the dollar sign is not beeing highlighted.
For example double clicking on $scope here only marks scope.
$scope.data = data;
Is there an easy fix for this?
The text was updated successfully, but these errors were encountered: