Neovim plugin improving access to clipboard history (mirror)

Merge branch 'main' of github.com:ptdewey/yankbank-nvim

ptdewey cc94fbea ea828c06

+6 -3
+6 -3
doc/yankbank-nvim.txt
··· 1 - *yankbank-nvim.txt* For Neovim >= 0.7.0 Last change: 2024 October 28 1 + *yankbank-nvim.txt* For Neovim >= 0.7.0 Last change: 2025 June 30 2 2 3 3 ============================================================================== 4 4 Table of Contents *yankbank-nvim-table-of-contents* ··· 88 88 `"<CR>"` | | keymaps.paste_back | string | `"P"` | | keymaps.yank | string | 89 89 `"yy"` | | keymaps.close | table of strings | `{ "<Esc>", "<C-c>", "q" }` | | 90 90 num_behavior | string defining jump behavior "prefix" or "jump" | `"prefix"` | 91 - | focus_gain_poll | boolean | `nil` | | registers | table container for 91 + | focus_gain_poll | boolean | `false` | | registers | table container for 92 92 register overrides | `{ }` | | registers.yank_register | default register to 93 93 yank from popup to | `"+"` | | persist_type | string defining persistence type 94 94 "sqlite" or nil | `nil` | | db_path | string defining database file path for 95 - use with sqlite persistence | plugin install directory | 95 + use with sqlite persistence | plugin install directory | | bind_indices | 96 + optional string to be used for keybind prefix for pasting by index number 97 + (i.e. "p") | `nil` | 96 98 97 99 98 100 EXAMPLE CONFIGURATION ··· 114 116 registers = { 115 117 yank_register = "+", 116 118 }, 119 + bind_indices = "<leader>p" 117 120 }) 118 121 end, 119 122 }