This document explains how to resolve shortcut conflicts in IntelliJ.
After using IntelliJ for about a week, I encountered a warning.
The latest version of IntelliJ has overridden key functions, so conflicts do not occur.
If there are no issues with usage, you can ignore the warning message.
ENVIRONMENT
- macOS 14.0 (Sonoma)
- IntelliJ IDEA Ultimate 2023.2.2
- New UI
- Compact mode
- New UI
PROBLEM
A warning about a shortcut conflict has appeared.
SOLUTION
INTELLIJ
By checking the Keymap through the Modify Shortcuts link, I found that the shortcut ⇧ + ⌘ + A is in conflict.
MACOS, SONOMA
First, open the Settings app.
-
Settings Screen:
- Click on the Keyboard menu
- Click on the Keyboard Shortcuts button
-
Keyboard Shortcuts Screen:
- Click on the Services menu
- Click on the Text item
- Uncheck the Search man Page Index in Terminal item
WHAT IS SEARCH MAN PAGE INDEX IN TERMINAL?
This feature is responsible for passing the selected text to the terminal as a manual option.
If the manual exists in the system, it will be displayed.
However, the argument passed to the man option is incorrectly formatted as sudo;type=a, which causes it to fail to find the manual and display a message indicating that the manual is not available.
Executable Command:
man sudo;type=a
This command outputs the manual without any issues.
Command That Causes an Error (Speculation):
man "sudo;type=a"
This command outputs the same text as when executed with the shortcut.