Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 8df351d

Browse files
[jetbrains_projects] 4.0
1 parent 3aa6a13 commit 8df351d

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

jetbrains_projects/__init__.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"""
66
This plugin allows you to quickly open projects of the Jetbrains IDEs
77
8-
- Aqua
98
- Android Studio
9+
- Aqua
1010
- CLion
1111
- DataGrip
1212
- DataSpell
@@ -16,13 +16,12 @@
1616
- PyCharm
1717
- Rider
1818
- RubyMine
19+
- RustRover
1920
- WebStorm
2021
- Writerside.
2122
2223
Note that for this plugin to find the IDEs, a commandline launcher in $PATH is required.
2324
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.
2625
"""
2726

2827
from dataclasses import dataclass
@@ -34,7 +33,7 @@
3433
from albert import *
3534

3635
md_iid = "3.0"
37-
md_version = "3.0"
36+
md_version = "4.0"
3837
md_name = "Jetbrains projects"
3938
md_description = "Open your JetBrains projects"
4039
md_license = "MIT"
@@ -200,16 +199,16 @@ def __init__(self):
200199
icon=plugin_dir / "icons" / "rubymine.svg",
201200
config_dir_prefix="JetBrains/RubyMine",
202201
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"]),
208202
Editor(
209203
name="RustRover",
210204
icon=plugin_dir / "icons" / "rustrover.svg",
211205
config_dir_prefix="JetBrains/RustRover",
212206
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"]),
213212
Editor(
214213
name="Writerside",
215214
icon=plugin_dir / "icons" / "writerside.svg",

0 commit comments

Comments
 (0)