What is the MacOS equivalent of Alt + Enter on IntelliJ?

Viewed 23

I recently switched to programming on a Mac and I don't know any of the keyboard shortcuts for IntelliJ.

1 Answers

What is the MacOS equivalent of Alt + Enter on IntelliJ?

The documentation says ⌥⏎ (Option + Return).

Quoting:

"If there's an error in the code, pressing ⌥⏎ (macOS), or Alt+Enter (Windows/Linux), can suggest options that will make the code compile."

https://www.jetbrains.com/idea/guide/tips/alt-enter/

I recently switched to programming on a Mac and I don't know any of the keyboard shortcuts for IntelliJ.

Here's a list: https://www.jetbrains.com/help/idea/mastering-keyboard-shortcuts.html?keymap=secondary_macos

Related