mirror of
https://github.com/desktop/desktop
synced 2024-10-30 06:03:10 +00:00
Add support for PyCharm as external editor on macOS
This commit is contained in:
parent
63a27d2f40
commit
5d9aad9920
2 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,7 @@ export enum ExternalEditor {
|
|||
SublimeText = 'Sublime Text',
|
||||
BBEdit = 'BBEdit',
|
||||
PhpStorm = 'PhpStorm',
|
||||
PyCharm = 'PyCharm',
|
||||
RubyMine = 'RubyMine',
|
||||
TextMate = 'TextMate',
|
||||
Brackets = 'Brackets',
|
||||
|
@ -52,6 +53,9 @@ export function parse(label: string): ExternalEditor | null {
|
|||
if (label === ExternalEditor.PhpStorm) {
|
||||
return ExternalEditor.PhpStorm
|
||||
}
|
||||
if (label === ExternalEditor.PyCharm) {
|
||||
return ExternalEditor.PyCharm
|
||||
}
|
||||
if (label === ExternalEditor.RubyMine) {
|
||||
return ExternalEditor.RubyMine
|
||||
}
|
||||
|
|
|
@ -254,6 +254,7 @@ These editors are currently supported:
|
|||
- [Sublime Text](https://www.sublimetext.com/)
|
||||
- [BBEdit](http://www.barebones.com/products/bbedit/)
|
||||
- [PhpStorm](https://www.jetbrains.com/phpstorm/)
|
||||
- [PyCharm](https://www.jetbrains.com/pycharm/)
|
||||
- [RubyMine](https://www.jetbrains.com/rubymine/)
|
||||
- [IntelliJ IDEA](https://www.jetbrains.com/idea/)
|
||||
- [TextMate](https://macromates.com)
|
||||
|
|
Loading…
Reference in a new issue