File tree Expand file tree Collapse file tree 3 files changed +26
-7
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 3 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This plugin adds an intention to open regular expressions on regex101.com
4
4
5
- [ ![ Plugin repository] ( https://img.shields.io/jetbrains/plugin/v/14461-open-regex101?label=version&style=flat-square )] ( https://plugins.jetbrains.com/plugin/14461-open-regex101 )
5
+ [ ![ Plugin repository] ( https://img.shields.io/jetbrains/plugin/v/14461-open-regex101?label=version&style=flat-square )] ( https://plugins.jetbrains.com/plugin/14461-open-regex101/versions )
6
6
[ ![ Plugin downloads] ( https://img.shields.io/jetbrains/plugin/d/14461-open-regex101?style=flat-square )] ( https://plugins.jetbrains.com/plugin/14461-open-regex101 )
7
- [ ![ Plugin stars] ( https://img.shields.io/jetbrains/plugin/r/stars/14461-open-regex101?style=flat-square )] ( https://plugins.jetbrains.com/plugin/14461-open-regex101 )
7
+ [ ![ Plugin stars] ( https://img.shields.io/jetbrains/plugin/r/stars/14461-open-regex101?style=flat-square )] ( https://plugins.jetbrains.com/plugin/14461-open-regex101/reviews )
8
8
[ ![ Build status] ( https://img.shields.io/github/workflow/status/aesy/regex101-intellij/Continous%20Integration?style=flat-square )] ( https://github.com/aesy/regex101-intellij/actions )
9
9
[ ![ Test coverage] ( https://img.shields.io/codecov/c/github/aesy/regex101-intellij?style=flat-square )] ( https://codecov.io/github/aesy/regex101-intellij )
10
10
[ ![ MIT license] ( https://img.shields.io/github/license/aesy/regex101-intellij.svg?style=flat-square )] ( https://github.com/aesy/regex101-intellij/blob/master/LICENSE )
11
11
12
12
## Installation
13
13
14
- Download and install the plugin through your IDE or through [ the marketplace] ( https://plugins.jetbrains.com/plugin/14461-open-regex101 ) :
14
+ Download and install the plugin through your IDE or through [ the marketplace] ( https://plugins.jetbrains.com/plugin/14461-open-regex101 ) .
15
15
16
16
![ Marketplace] ( ./img/installation.png )
17
17
18
18
## Usage
19
19
20
- Show context actions on a regular expression and pick "Open RegExp on regex101.com":
20
+ Show context actions on a regular expression and select "Open RegExp on regex101.com".
21
21
22
22
![ Context actions] ( ./img/usage.png )
23
23
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
8
8
}
9
9
10
10
group = " io.aesy.regex101"
11
- version = " 0.1 "
11
+ version = " 0.2 "
12
12
13
13
repositories {
14
14
mavenCentral()
Original file line number Diff line number Diff line change 1
1
<idea-plugin >
2
2
<id >io.aesy.regex101</id >
3
3
<name >Open Regex101</name >
4
- <version >0.1 </version >
4
+ <version >0.2 </version >
5
5
<vendor email =" isak.wertwein@gmail.com" url =" https://github.com/aesy/regex101-intellij" >Isak Wertwein</vendor >
6
6
<category >Intention</category >
7
7
8
8
<description ><![CDATA[
9
- Adds an intention to open regular expressions on regex101.com
9
+ <html>
10
+ <p>Adds an intention to open regular expressions on regex101.com</p>
11
+ <br>
12
+ <img src="https://raw.githubusercontent.com/aesy/regex101-intellij/master/img/usage.png">
13
+ </html>
10
14
]]> </description >
11
15
16
+ <change-notes ><![CDATA[
17
+ <html>
18
+ <b>Changes in version 0.2:</b>
19
+ <ul>
20
+ <li>Fix inconsistent unescaping</li>
21
+ <li>Java 8 compatibility</li>
22
+ </ul>
23
+
24
+ <b>Changes in version 0.1:</b>
25
+ <ul>
26
+ <li>Initial release</li>
27
+ </ul>
28
+ </html>
29
+ ]]> </change-notes >
30
+
12
31
<idea-version since-build =" 192.5728.98" />
13
32
14
33
<depends >com.intellij.modules.lang</depends >
You can’t perform that action at this time.
0 commit comments