Skip to content

Commit 3c034d0

Browse files
mattBrzezinskiStefanKarpinski
authored andcommitted
InteractiveUtils - Added support for PyCharm (#34169)
* Ignoring JetBrains configuration files * InteractiveUtils: Added support for PyCharm
1 parent 608567f commit 3c034d0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@
3030

3131
/perf*
3232
.DS_Store
33+
.idea/*

stdlib/InteractiveUtils/src/editless.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ already work:
6969
- notepad++
7070
- Visual Studio Code
7171
- open
72+
- pycharm
7273
7374
# Example:
7475
@@ -123,7 +124,7 @@ function define_default_editors()
123124
define_editor(["textmate", "mate", "kate"]) do cmd, path, line
124125
`$cmd $path -l $line`
125126
end
126-
define_editor([r"\bsubl", r"\batom"]) do cmd, path, line
127+
define_editor([r"\bsubl", r"\batom", "pycharm"]) do cmd, path, line
127128
`$cmd $path:$line`
128129
end
129130
define_editor("code") do cmd, path, line

0 commit comments

Comments
 (0)