This commit is contained in:
Ray Elliott 2025-12-21 14:05:13 +00:00
parent 52e04cd8df
commit 8cf56f13e5
5 changed files with 7 additions and 2 deletions

View File

@ -57,6 +57,7 @@ Source of truth for the step-by-step rebuild. Keep this concise and up to date.
## Phase 3.3 — Core completion stack ## Phase 3.3 — Core completion stack
- [x] Add core completion stack: `nvim-cmp`, `cmp-nvim-lsp`, `cmp-buffer`, `cmp-path`, `LuaSnip` - [x] Add core completion stack: `nvim-cmp`, `cmp-nvim-lsp`, `cmp-buffer`, `cmp-path`, `LuaSnip`
- [x] Disable auto-selection in nvim-cmp (require explicit confirm)
## Phase 3.4 — Projectlocal configuration (native exrc) ## Phase 3.4 — Projectlocal configuration (native exrc)
- [x] Confirm scope and priorities for this subphase - [x] Confirm scope and priorities for this subphase

View File

@ -162,6 +162,7 @@ Record every decision here with a short rationale. Append new entries; do not re
- **Colorscheme integration**: Native Neovim colorscheme at `colors/paper-tonic-modern.lua` - **Colorscheme integration**: Native Neovim colorscheme at `colors/paper-tonic-modern.lua`
- **No overrides needed**: Modern implementation doesn't require separate override file - **No overrides needed**: Modern implementation doesn't require separate override file
- 2025-12-12: Added `KEYMAPS.md` + `:KeymapsGuide` floating viewer to document every configured keymap (global + plugin-specific) grouped by source file. - 2025-12-12: Added `KEYMAPS.md` + `:KeymapsGuide` floating viewer to document every configured keymap (global + plugin-specific) grouped by source file.
- 2025-12-12: nvim-cmp updated to disable auto-selection; confirm requires explicit item selection.
## Project-Local Configuration (design) ## Project-Local Configuration (design)

View File

@ -20,7 +20,7 @@ return {
}, },
mapping = cmp.mapping.preset.insert({ mapping = cmp.mapping.preset.insert({
["<C-Space>"] = cmp.mapping.complete(), ["<C-Space>"] = cmp.mapping.complete(),
["<CR>"] = cmp.mapping.confirm({ select = true }), -- Auto-select first item ["<CR>"] = cmp.mapping.confirm({ select = false }),
["<C-n>"] = cmp.mapping.select_next_item(), ["<C-n>"] = cmp.mapping.select_next_item(),
["<C-p>"] = cmp.mapping.select_prev_item(), ["<C-p>"] = cmp.mapping.select_prev_item(),
["<C-e>"] = cmp.mapping.abort(), ["<C-e>"] = cmp.mapping.abort(),
@ -31,7 +31,8 @@ return {
{ name = "path", group_index = 2 }, { name = "path", group_index = 2 },
{ name = "buffer", group_index = 2 }, { name = "buffer", group_index = 2 },
}), }),
completion = { completeopt = "menu,menuone,noinsert" }, -- Auto-select first item preselect = cmp.PreselectMode.None,
completion = { completeopt = "menu,menuone,noinsert,noselect" },
window = { window = {
completion = cmp.config.window.bordered(), completion = cmp.config.window.bordered(),
documentation = cmp.config.window.bordered(), documentation = cmp.config.window.bordered(),

View File

@ -771,3 +771,5 @@ ahrefs
#engo #engo
Tengo/! Tengo/!
Trengo Trengo
Hostinger's
hPanel

Binary file not shown.