Skip to content

Commit

Permalink
fix(mappings): correct prev completion mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
queue-tip committed Mar 16, 2024
1 parent 5e95848 commit 6b29b5a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/content/docs/mappings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,19 @@ AstroNvim generally relies on `<Leader>` driven mappings, which is default set t

## Completion

| Action | Mappings |
| --------------------------- | ------------------------------------- |
| Open completion menu | `Ctrl + Space` |
| Select completion | `Enter` |
| Next snippet location | `Tab` |
| Previous snippet location | `Shift + Tab` |
| Next completion | `Down`, `Ctrl + n`, `Ctrl + j`, `Tab` |
| Previous completion | `Down`, `Ctrl + n`, `Ctrl + k`, `Tab` |
| Next snippet location | `Tab` |
| Previous snippet location | `Shift + Tab` |
| Cancel completion | `Ctrl + e` |
| Scroll up completion docs | `Ctrl + u` |
| Scroll down completion docs | `Ctrl + d` |
| Action | Mappings |
| --------------------------- | ------------------------------------------- |
| Open completion menu | `Ctrl + Space` |
| Select completion | `Enter` |
| Next snippet location | `Tab` |
| Previous snippet location | `Shift + Tab` |
| Next completion | `Down`, `Ctrl + n`, `Ctrl + j`, `Tab` |
| Previous completion | `Up`, `Ctrl + p`, `Ctrl + k`, `Shift + Tab` |
| Next snippet location | `Tab` |
| Previous snippet location | `Shift + Tab` |
| Cancel completion | `Ctrl + e` |
| Scroll up completion docs | `Ctrl + u` |
| Scroll down completion docs | `Ctrl + d` |

## Neo-Tree

Expand Down

0 comments on commit 6b29b5a

Please sign in to comment.