Last active
November 28, 2023 19:56
-
-
Save letam/a26126caf2befcc88075f37226bc8254 to your computer and use it in GitHub Desktop.
pycharm setup for sublime merge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
open -na "PyCharm.app" --args "$@" | |
# # Notes for PyCharm command-line launcher script: | |
# ## Installation (Ref: https://www.jetbrains.com/help/pycharm/working-with-the-ide-features-from-command-line.html): | |
# Place this file in: /usr/local/bin/pycharm | |
# ## Integration with Sublime Merge: | |
# Editor Path: | |
# /usr/local/bin/pycharm | |
# Editor Argument Format (Ref: https://www.jetbrains.com/help/pycharm/opening-files-from-command-line.html): | |
# --line ${line} --column ${col} ${file} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!