Skip to content

Commit

Permalink
InteractiveUtils - Added support for PyCharm (JuliaLang#34169)
Browse files Browse the repository at this point in the history
* Ignoring JetBrains configuration files
* InteractiveUtils: Added support for PyCharm
  • Loading branch information
mattBrzezinski authored and StefanKarpinski committed Dec 20, 2019
1 parent 608567f commit 3c034d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@

/perf*
.DS_Store
.idea/*
3 changes: 2 additions & 1 deletion stdlib/InteractiveUtils/src/editless.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ already work:
- notepad++
- Visual Studio Code
- open
- pycharm
# Example:
Expand Down Expand Up @@ -123,7 +124,7 @@ function define_default_editors()
define_editor(["textmate", "mate", "kate"]) do cmd, path, line
`$cmd $path -l $line`
end
define_editor([r"\bsubl", r"\batom"]) do cmd, path, line
define_editor([r"\bsubl", r"\batom", "pycharm"]) do cmd, path, line
`$cmd $path:$line`
end
define_editor("code") do cmd, path, line
Expand Down

0 comments on commit 3c034d0

Please sign in to comment.