The whole hunk
from line 82, old and new numbered
/
lines
from line 82
8282#### General settings
8383
8484* **Claude command**: specify a custom command to run Claude, for example `claude`, `/usr/local/bin/claude`, or `npx @anthropic-ai/claude-code`
85* **Suppress notification for Claude command not found**: skip notifications about not finding the Claude command
85* **Suppress notification for when Claude Command is not found**: skip notifications about not finding the Claude command
8686* **Enable using Option+Enter for multi-line prompts**: on macOS only. When enabled, Option+Enter inserts new lines in Claude Code prompts. Disable if the Option key is being captured unexpectedly. Requires a terminal restart.
8787* **Enable automatic updates**: automatically check for and install plugin updates, applied on restart
8888
from line 207
207207
208208**Tools exposed to the model.** The server hosts several tools, but only one is visible to the model. The rest are internal RPC the CLI uses for its own UI, such as opening diffs and reading selections, and are filtered out before the tool list reaches Claude.
209209
210| Tool name (as seen by hooks) | What it does | Read-only |
211| ---------------------------- | --------------------------------------------------------------------------------------------------------------------- | --------- |
212| `mcp__ide__getDiagnostics` | Returns the IDE's inspection diagnostics, the errors and warnings shown in the editor. Optionally scoped to one file. | Yes |
210| Tool name (as seen by hooks) | What it does | Read-only |
211| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- |
212| `mcp__ide__getDiagnostics` | Returns the IDE's inspection diagnostics, the errors and warnings shown in the editor. Each call covers one file: the file Claude specifies, or the file in your active editor if Claude doesn't specify one. | Yes |
213213
214214The JetBrains plugin does not expose a code-execution tool to the model.
215215