update
This commit is contained in:
parent
52e04cd8df
commit
8cf56f13e5
|
|
@ -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
|
||||
- [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 — Project‑local configuration (native exrc)
|
||||
- [x] Confirm scope and priorities for this subphase
|
||||
|
|
|
|||
|
|
@ -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`
|
||||
- **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: nvim-cmp updated to disable auto-selection; confirm requires explicit item selection.
|
||||
|
||||
## Project-Local Configuration (design)
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ return {
|
|||
},
|
||||
mapping = cmp.mapping.preset.insert({
|
||||
["<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-p>"] = cmp.mapping.select_prev_item(),
|
||||
["<C-e>"] = cmp.mapping.abort(),
|
||||
|
|
@ -31,7 +31,8 @@ return {
|
|||
{ name = "path", 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 = {
|
||||
completion = cmp.config.window.bordered(),
|
||||
documentation = cmp.config.window.bordered(),
|
||||
|
|
|
|||
|
|
@ -771,3 +771,5 @@ ahrefs
|
|||
#engo
|
||||
Tengo/!
|
||||
Trengo
|
||||
Hostinger's
|
||||
hPanel
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in New Issue