Skip to content
This repository has been archived by the owner on Apr 16, 2021. It is now read-only.

Commit

Permalink
Add support for PyCharm
Browse files Browse the repository at this point in the history
  • Loading branch information
flaktack authored and swsnr committed Jun 21, 2020
1 parent 0c21f18 commit cacc8f4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Supports:
- Webstorm (Toolbox, Snap)
- CLion (Toolbox, Snap)
- GoLand (Toolbox)
- PyCharm (Toolbox)

## Requirements

Expand Down
7 changes: 7 additions & 0 deletions extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@ const PRODUCTS: Map<string, ProductInfo> = new Map<string, ProductInfo>(
"jetbrains-goland.desktop",
],
},
{
key: "pycharm",
desktopNames: [
// Toolbox installation
"jetbrains-pycharm.desktop",
],
},
].map((product) => [product.key, product])
);

Expand Down
1 change: 1 addition & 0 deletions find-projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
ProductInfo(key='webstorm', config_glob='WebStorm*'),
ProductInfo(key='clion', config_glob='CLion*'),
ProductInfo(key='goland', config_glob='GoLand*'),
ProductInfo(key='pycharm', config_glob='PyCharm*'),
]


Expand Down

0 comments on commit cacc8f4

Please sign in to comment.