├── .idea
├── .name
├── ant.xml
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── haxe.xml
├── inspectionProfiles
│ ├── Project_Default.xml
│ └── profiles_settings.xml
├── libraries
│ └── KotlinJavaRuntime.xml
├── misc.xml
├── modules.xml
├── scopes
│ └── scope_settings.xml
├── uiDesigner.xml
└── vcs.xml
├── META-INF
└── plugin.xml
├── README.md
├── angularjs-plugin.iml
├── lib
└── kotlin-runtime.jar
├── ng-attributes.txt
├── resources
└── liveTemplates
│ └── AngularJS.xml
└── src
├── intentionDescriptions
└── OpenInDocsIntention
│ ├── after.java.template
│ ├── before.java.template
│ └── description.html
└── org
└── angularjs
├── AngularAttributeDescriptor.kt
├── AngularBracesInterpolationTypedHandler.kt
├── AngularCompletionContributor.java
├── AngularInspection.java
├── AngularItem.java
├── AngularJS.kt
├── AngularJSConfig.kt
├── AngularJSConfigAnnotationPatch.java
├── AngularJSConfigTemp.java
├── AngularJSConfigurationPage.form
├── AngularJSConfigurationPage.java
├── AngularJSCustomAttributeDescriptorsProvider.kt
├── AngularJSTemplatesProvider.kt
├── DirectiveCompletionContributor.kt
├── GotoAngularAction.java
├── GotoAngularModel.java
└── OpenInDocsIntention.kt
/.idea/.name:
--------------------------------------------------------------------------------
1 | angularjs-plugin
--------------------------------------------------------------------------------
/.idea/ant.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/haxe.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/libraries/KotlinJavaRuntime.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/scopes/scope_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/.idea/uiDesigner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | -
6 |
7 |
8 | -
9 |
10 |
11 | -
12 |
13 |
14 | -
15 |
16 |
17 | -
18 |
19 |
20 |
21 |
22 |
23 | -
24 |
25 |
26 |
27 |
28 |
29 | -
30 |
31 |
32 |
33 |
34 |
35 | -
36 |
37 |
38 |
39 |
40 |
41 | -
42 |
43 |
44 |
45 |
46 | -
47 |
48 |
49 |
50 |
51 | -
52 |
53 |
54 |
55 |
56 | -
57 |
58 |
59 |
60 |
61 | -
62 |
63 |
64 |
65 |
66 | -
67 |
68 |
69 |
70 |
71 | -
72 |
73 |
74 | -
75 |
76 |
77 |
78 |
79 | -
80 |
81 |
82 |
83 |
84 | -
85 |
86 |
87 |
88 |
89 | -
90 |
91 |
92 |
93 |
94 | -
95 |
96 |
97 |
98 |
99 | -
100 |
101 |
102 | -
103 |
104 |
105 | -
106 |
107 |
108 | -
109 |
110 |
111 | -
112 |
113 |
114 |
115 |
116 | -
117 |
118 |
119 | -
120 |
121 |
122 |
123 |
124 |
125 |
126 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/META-INF/plugin.xml:
--------------------------------------------------------------------------------
1 |
2 | AngularJS
3 | Support for AngularJS
4 | 0.1.9
5 | johnlindquist
6 |
8 |
9 | 0.1.9
10 | Added a setting for whitespace between braces
11 | 0.1.8
12 | Fixing bug introduced by autocomplete with invalid elements (had to "revert" to old method of autocomplete, so I need to find a new approach for invalid elements
13 | 0.1.7
14 | Focusing on WebStorm 7 compatibility
15 | 0.1.6
16 | Adding navigation, auto-closing {{, attribute autocomplete on all elements, and "jump to docs"
17 | 0.1.5
18 | Adding "href" and "disabled" to the descriptors list
19 | 0.1.4
20 | Bundling live templates thanks to Powel Kozlowski
21 | 0.1.3
22 | Adding the mouse events and a couple other missing directives
23 | 0.1.2
24 | Works with any doctype (not just !doctype html).
25 | 0.1.1
26 | Changed Autocomplete approach to "provide" custom autocompletes through a provider extension point. I'll
27 | revisit a custom DTD after more discussion/thought with other developers.
28 |
29 | 0.1
30 | Basic ng attribute autocompletion based on an included DTD.
31 |
32 |