Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions content/docs/learn/playground/navigate-range-select.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,25 +52,29 @@ _Matches Google Sheets:_ In Google Sheets, clicking a cell selects it alone; shi
**Then**
- the active cell is **B2**

#### Tab moves the active cell one column right
#### Tab moves the active cell one column right without extending the selection

**Given**

**When** I click **A1**, then press `Tab`

**Then**
- the active cell is **B1**
- the selection is just **B1** — it did not extend
- keyboard focus is on the **grid**

#### Shift+Tab moves the active cell one column left
#### Shift+Tab moves the active cell one column left without extending the selection

**Given**

**When** I click **C1**, then press `Shift+Tab`

**Then**
- the active cell is **B1**
- the selection is just **B1** — it did not extend
- keyboard focus is on the **grid**

#### Tab from an open editor commits the edit and moves one column right
#### Tab from an open editor commits the edit, moves one column right, and keeps focus on the grid

**Given**

Expand All @@ -79,8 +83,10 @@ _Matches Google Sheets:_ In Google Sheets, clicking a cell selects it alone; shi
**Then**
- **B2** shows `9`
- the active cell is **C2**
- the selection is just **C2** — it did not extend
- keyboard focus is on the **grid**

#### Shift+Tab from an open editor commits the edit and moves one column left
#### Shift+Tab from an open editor commits the edit, moves one column left, and keeps focus on the grid

**Given**

Expand All @@ -89,6 +95,8 @@ _Matches Google Sheets:_ In Google Sheets, clicking a cell selects it alone; shi
**Then**
- **C2** shows `9`
- the active cell is **B2**
- the selection is just **B2** — it did not extend
- keyboard focus is on the **grid**

#### Committing an edit with Enter moves the active cell down

Expand Down
Loading