From c5e0cadcd2d5785c7a9f752348d953781cb030df Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Tue, 23 Jun 2026 16:20:03 +0100 Subject: [PATCH] docs(editor): document nvim-cmp completion menu keybindings Add a completion-menu table to KEYBINDINGS.md covering the new cmp mappings (Tab/S-Tab and C-n/C-p to move, C-Space to open, Enter to confirm, C-e to dismiss), and reword the Neovim summary accordingly. Co-Authored-By: Claude Opus 4.8 (1M context) --- lyrathorpe/home/KEYBINDINGS.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/lyrathorpe/home/KEYBINDINGS.md b/lyrathorpe/home/KEYBINDINGS.md index a64d2f1..0ef90a7 100644 --- a/lyrathorpe/home/KEYBINDINGS.md +++ b/lyrathorpe/home/KEYBINDINGS.md @@ -188,10 +188,22 @@ across vim splits and tmux panes seamlessly. Everything else is stock vim, plus: | `rn` | Rename symbol (LSP; `` is `Space`) | | `ca` | Code action (LSP) | -LSP covers Nix, Lua, Python and Terraform (the work box adds C# and Helm); -completion (nvim-cmp) appears as you type. Files are formatted on save -(conform-nvim). `:Git` opens fugitive; gitsigns shows gutter signs. which-key -pops up after `` to show the rest. +### Completion menu (nvim-cmp) + +Active only while the completion popup is open (it appears as you type, e.g. +file paths): + +| Shortcut | Action | +| ----------------------- | ------------------------------------------------------------------ | +| `Tab` / `Shift`+`Tab` | Select next / previous item | +| `Ctrl`+`n` / `Ctrl`+`p` | Select next / previous item | +| `Ctrl`+`Space` | Open the completion menu | +| `Enter` | Confirm the highlighted item (no auto-select; otherwise a newline) | +| `Ctrl`+`e` | Dismiss the menu | + +LSP covers Nix, Lua, Python and Terraform (the work box adds C# and Helm). +Files are formatted on save (conform-nvim). `:Git` opens fugitive; gitsigns +shows gutter signs. which-key pops up after `` to show the rest. ---