Skip to content

Commit 10ae667

Browse files
docs: update keybinding references to 1/2/3/4/0 (revert from Alt)\n\nCo-Authored-By: Warp <agent@warp.dev>
1 parent 9c93632 commit 10ae667

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export ANTHROPIC_API_KEY="sk-ant-..." # for Claude models
4343
export OPENAI_API_KEY="sk-..." # for OpenAI models
4444
```
4545

46-
Or configure in Settings tab (`Alt+4`).
46+
Or configure in Settings tab (`4`).
4747

4848
## Usage
4949

@@ -56,7 +56,7 @@ aipm "create three tasks for the auth feature"
5656
aipm suggestions sync --limit 5
5757
```
5858

59-
**Keybindings**: Press `Alt+1/2/3/4/0` to switch tabs. Full vim-style navigation (`hjkl`, arrows, etc.).
59+
**Keybindings**: Press `1/2/3/4/0` to switch tabs. Full vim-style navigation (`hjkl`, arrows, etc.).
6060

6161
## Documentation
6262

docs/features/suggestions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ The email suggestions feature integrates directly with Apple Mail via AppleScrip
66

77
- **Background polling**: Automatically checks for new unread emails every 60 seconds
88
- **AI filtering**: Uses LLM to identify actionable emails and filter out noise (sales, marketing, etc.)
9-
- **Suggestions tab**: View suggested tasks in the app (press `Alt+0` to access)
9+
- **Suggestions tab**: View suggested tasks in the app (press `0` to access)
1010
- **Archive detection**: Automatically removes suggestions and tasks when you archive emails in Mail.app
1111
- **CLI commands**: Sync emails and create tasks from the command line
1212

1313
## Setup
1414

1515
### 1. Enable Email Suggestions
1616

17-
Press `Alt+0` to open the Suggestions tab, then press `e` to toggle email suggestions on.
17+
Press `0` to open the Suggestions tab, then press `e` to toggle email suggestions on.
1818

1919
Or via CLI:
2020
```sh
@@ -27,7 +27,7 @@ macOS will prompt you to allow aipm to control Mail.app the first time. Grant th
2727

2828
## Using the Suggestions Tab
2929

30-
Press `Alt+0` to open the Suggestions tab (rightmost tab).
30+
Press `0` to open the Suggestions tab (rightmost tab).
3131

3232
### Keybindings
3333

@@ -131,7 +131,7 @@ Background Thread
131131
↓ (AI Filter)
132132
Suggestions Channel
133133
↓ (EmailEvent::NewSuggestion)
134-
App State → Suggestions Tab (Alt+0)
134+
App State → Suggestions Tab (0)
135135
↓ (User accepts)
136136
Tasks
137137
```
@@ -140,7 +140,7 @@ Tasks
140140

141141
### No suggestions appearing
142142

143-
1. Check email suggestions are enabled in the Suggestions tab (`Alt+0`, press `e`)
143+
1. Check email suggestions are enabled in the Suggestions tab (`0`, press `e`)
144144
2. Ensure Mail.app has unread emails
145145
3. Check that aipm has Automation permission for Mail.app (System Settings → Privacy & Security → Automation)
146146

docs/ui/keybindings.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ aipm is fully keyboard-driven with vim-style navigation options.
77
| Key | Action |
88
|-----|--------|
99
| `Ctrl-C` | Quit application |
10-
| `Alt+1` | Switch to Buckets tab |
11-
| `Alt+2` | Switch to Timeline tab |
12-
| `Alt+3` | Switch to Kanban tab |
13-
| `Alt+4` | Switch to Settings tab |
14-
| `Alt+0` | Switch to Suggestions tab |
10+
| `1` | Switch to Buckets tab |
11+
| `2` | Switch to Timeline tab |
12+
| `3` | Switch to Kanban tab |
13+
| `4` | Switch to Settings tab |
14+
| `0` | Switch to Suggestions tab |
1515

1616
## Tab Bar Focus
1717

src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ fn run_suggestions_cmd(args: &[String]) -> io::Result<()> {
569569
fn cmd_suggestions_list() -> io::Result<()> {
570570
let (_, _, settings) = load();
571571
if !settings.email_suggestions_enabled {
572-
die("Email suggestions are not enabled. Enable it in the Suggestions tab (Alt+0) first.");
572+
die("Email suggestions are not enabled. Enable it in the Suggestions tab (0) first.");
573573
}
574574

575575
let emails = crate::mail::get_recent_emails(10).map_err(io::Error::other)?;
@@ -611,7 +611,7 @@ fn cmd_suggestions_sync(args: &[String]) -> io::Result<()> {
611611
}
612612

613613
if !settings.email_suggestions_enabled {
614-
die("Email suggestions are not enabled. Enable it in the Suggestions tab (Alt+0) first.");
614+
die("Email suggestions are not enabled. Enable it in the Suggestions tab (0) first.");
615615
}
616616

617617
let emails = crate::mail::get_recent_emails(10).map_err(io::Error::other)?;

0 commit comments

Comments
 (0)