Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · claude-code

Customize keyboard shortcuts changed

keybindings

Nearest release: v2.1.280, published under an hour before upstream edited the page. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Upstream edited this page at 22 Sep 2026 16:44 UTC, give or take a minute or two: the time comes from Anthropic’s own sitemap rather than from a commit. This site recorded the change at 22 Sep 2026 16:47 UTC.

Upstream edited
Recorded here
Lines+25added
Lines−3removed
From line 133 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits21to this page, all time

The whole hunk

from line 133, old and new numbered
/
lines
from line 133
133133 
134134| Action | Default | Description |
135135| :---------------------- | :---------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
136| `confirm:yes` | Y, Enter | Confirm action |
137| `confirm:no` | N, Escape | Decline action |
136| `confirm:yes` | Enter | Confirm action |
137| `confirm:no` | Escape | Decline action |
138138| `confirm:previous` | Up | Previous option |
139139| `confirm:next` | Down | Next option |
140140| `confirm:nextField` | Tab | Next field |
from line 146
146146 
147147Before v2.1.257, a `confirm:toggleExplanation` action, bound to `Ctrl+E` by default, showed a model-generated explanation of the command on Bash and PowerShell permission prompts.
148148 
149Dialogs use `confirm:yes` and `confirm:no` to accept and cancel even when they don't ask a yes-or-no question. If you bind a bare letter such as `y` or `n` in this context, the letter also acts on dialogs that never show it as a key. A dialog that shows `y` and `n` as its keys reads those letters itself and needs no binding.
150 
151This example binds `y` to `confirm:yes` and `n` to `confirm:no`:
152 
153```json theme={null}
154{
155 "bindings": [
156 {
157 "context": "Confirmation",
158 "bindings": {
159 "y": "confirm:yes",
160 "n": "confirm:no"
161 }
162 }
163 ]
164}
165```
166 
167Before v2.1.280, `y` was also bound to `confirm:yes` and `n` to `confirm:no` by default. If you created your `keybindings.json` with `/keybindings` before v2.1.280, the file lists both bindings and they stay in effect until you delete those two lines.
168 
149169### Permission actions
150170 
151171Actions available in the `Confirmation` context for permission dialogs:
from line 344
324344| `select:accept` | Enter | Accept selection |
325345| `select:cancel` | Escape | Cancel selection |
326346 
327Claude Code applies your `select:pageUp`, `select:pageDown`, `select:first`, and `select:last` bindings in the `/skills` menu. In most other lists, such as the `/model` picker, Claude Code pages with PageUp and PageDown regardless of your bindings and ignores Home and End.
347Claude Code applies your `select:pageUp`, `select:pageDown`, `select:first`, and `select:last` bindings in the `/skills` menu. In most other lists, such as the `/model` picker, your `select:first` and `select:last` bindings apply. PageUp and PageDown page through the options in those lists regardless of your bindings.
348 
349Before v2.1.280, those other lists ignored Home, End, and your `select:first` and `select:last` bindings.
328350 
329351### Plugin actions
330352