angularjs-plugin icon indicating copy to clipboard operation
angularjs-plugin copied to clipboard

Support for alternative delimiters.

Open MuppetGate opened this issue 12 years ago • 2 comments

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.

MuppetGate avatar Sep 25 '13 07:09 MuppetGate

@johnlindquist please add support of this

Koc avatar Feb 09 '14 21:02 Koc

Because AngularJS is now moved to the JetBrains repository, this issue is now tracked in the YouTrack as WEB-10978.

denofevil avatar Feb 13 '14 07:02 denofevil