angularjs-plugin
angularjs-plugin copied to clipboard
Support for alternative delimiters.
AngularJS allows you to define alternative parameter delimiters, so you can say
[hello]
instead of
{{ hello }}
by simply redefining the delimiters:
var app = angular.module("MyTutorialApp",[], function($interpolateProvider) {
$interpolateProvider.startSymbol('[');
$interpolateProvider.endSymbol(']');
});
This is handy when you're using Angular with Django, and it would be nice if the plugin could understand that the delimiters have changed.
@johnlindquist please add support of this
Because AngularJS is now moved to the JetBrains repository, this issue is now tracked in the YouTrack as WEB-10978.