Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup idea command for Intellij Idea #375

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions JetBrainsIDEs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ Go to [their website](https://www.jetbrains.com/products.html?fromMenu#type=ide)

Alternatively, use the [Jetbrains Toolbox App](https://www.jetbrains.com/toolbox-app/) to manage product installations.

## Command line usage setup

setup `idea` command:

```sh
sudo mkdir -p /usr/local/bin && echo '#!/bin/sh\n\nopen -na "/Applications/IntelliJ IDEA.app" --args "$@"' | sudo tee /usr/local/bin/idea > /dev/null && sudo chmod +x /usr/local/bin/idea
```

Follows command line setup instructions from here: https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html

## Pricing

If you're a **student** or an **instructor** (teaching staff members) all IDEs from JetBrains are free to use. You can read more on [their website](https://www.jetbrains.com/student/). If you're not a student they still offer a few free Community Edition (CE) IDEs. Check out [IntelliJ](https://www.jetbrains.com/idea/) (Java) or [PyCharm Edu](https://www.jetbrains.com/pycharm-edu/).
Expand Down