I saw on EggHead a blog of some AngularJS javascript application coding videos. I understand that every time he types $scope.x = fun , the code ends and he types some shortcut (which I donโt know), which creates the following expression:
$scope.x = function () { }
The normal code is complete, ctrl + space , gives me:
$scope.x = function
Does anyone know this shortcut or how to configure it?
source share