|
5 | 5 | """ |
6 | 6 | This plugin allows you to quickly open projects of the Jetbrains IDEs |
7 | 7 |
|
8 | | -- Aqua |
9 | 8 | - Android Studio |
| 9 | +- Aqua |
10 | 10 | - CLion |
11 | 11 | - DataGrip |
12 | 12 | - DataSpell |
|
16 | 16 | - PyCharm |
17 | 17 | - Rider |
18 | 18 | - RubyMine |
| 19 | +- RustRover |
19 | 20 | - WebStorm |
20 | 21 | - Writerside. |
21 | 22 |
|
22 | 23 | Note that for this plugin to find the IDEs, a commandline launcher in $PATH is required. |
23 | 24 | Open the IDE and click Tools -> Create Command-line Launcher to add one. |
24 | | -
|
25 | | -Disclaimer: This plugin has no affiliation with JetBrains s.r.o.. The icons are used under the terms specified here. |
26 | 25 | """ |
27 | 26 |
|
28 | 27 | from dataclasses import dataclass |
|
34 | 33 | from albert import * |
35 | 34 |
|
36 | 35 | md_iid = "3.0" |
37 | | -md_version = "3.0" |
| 36 | +md_version = "4.0" |
38 | 37 | md_name = "Jetbrains projects" |
39 | 38 | md_description = "Open your JetBrains projects" |
40 | 39 | md_license = "MIT" |
@@ -200,16 +199,16 @@ def __init__(self): |
200 | 199 | icon=plugin_dir / "icons" / "rubymine.svg", |
201 | 200 | config_dir_prefix="JetBrains/RubyMine", |
202 | 201 | binaries=["rubymine", "rubymine-eap", "jetbrains-rubymine", "jetbrains-rubymine-eap"]), |
203 | | - Editor( |
204 | | - name="WebStorm", |
205 | | - icon=plugin_dir / "icons" / "webstorm.svg", |
206 | | - config_dir_prefix="JetBrains/WebStorm", |
207 | | - binaries=["webstorm", "webstorm-eap"]), |
208 | 202 | Editor( |
209 | 203 | name="RustRover", |
210 | 204 | icon=plugin_dir / "icons" / "rustrover.svg", |
211 | 205 | config_dir_prefix="JetBrains/RustRover", |
212 | 206 | binaries=["rustrover", "rustrover-eap"]), |
| 207 | + Editor( |
| 208 | + name="WebStorm", |
| 209 | + icon=plugin_dir / "icons" / "webstorm.svg", |
| 210 | + config_dir_prefix="JetBrains/WebStorm", |
| 211 | + binaries=["webstorm", "webstorm-eap"]), |
213 | 212 | Editor( |
214 | 213 | name="Writerside", |
215 | 214 | icon=plugin_dir / "icons" / "writerside.svg", |
|
0 commit comments