-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html --> | ||
<idea-plugin> | ||
<id>de.espend.idea.vuejs</id> | ||
<name>Vue.js Toolbox</name> | ||
<vendor email="[email protected]" url="http://espend.de?p=de.espend.idea.vuejs">espend_de</vendor> | ||
|
||
<!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager. | ||
Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag. | ||
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description --> | ||
<description><![CDATA[ | ||
<p>Provides additional <a href="https://vuejs.org/">Vue.js</a> support to all JetBrains IDEs that | ||
<a href="https://www.jetbrains.com/products/#lang=js&type=ide">support JavaScript</a>.</p> | ||
<h2>Features</h2> | ||
<h3>LineMarker</h3> | ||
<ul> | ||
<li>LineMarker of components usages file</li> | ||
<li>LineMarker for vue.js application entrypoint</li> | ||
<li>LineMarker for vue.js application entrypoints</li> | ||
<li>File usages components</li> | ||
<li>Vue.js application entrypoint</li> | ||
<li>Component targets</li> | ||
</ul> | ||
<h2>Getting started</h2> | ||
|
@@ -24,14 +22,10 @@ | |
]]></description> | ||
<category>JavaScript Frameworks and Tools</category> | ||
|
||
<!-- Product and plugin compatibility requirements. | ||
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html --> | ||
<depends>com.intellij.modules.platform</depends> | ||
|
||
<depends>org.jetbrains.plugins.vue</depends> | ||
|
||
<!-- Extension points defined by the plugin. | ||
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html --> | ||
<extensions defaultExtensionNs="com.intellij"> | ||
<codeInsight.lineMarkerProvider language="Vue" implementationClass="de.espend.idea.vuejs.linemarker.TemplateComponentLineMarker"/> | ||
<codeInsight.lineMarkerProvider language="HTML" implementationClass="de.espend.idea.vuejs.linemarker.ComponentUsageLineMarker"/> | ||
|