Neovim plugin improving access to clipboard history (mirror)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: auto-generate vimdoc

+8 -7
+8 -7
doc/yankbank-nvim.txt
··· 1 - *yankbank-nvim.txt* For Neovim >= 0.7.0 Last change: 2026 January 17 1 + *yankbank-nvim.txt* 2 + For Neovim >= 0.7.0 Last change: 2026 April 19 2 3 3 4 ============================================================================== 4 5 Table of Contents *yankbank-nvim-table-of-contents* ··· 147 148 yank from popup to | `"+"` | | persist_type | string defining persistence type 148 149 "sqlite" or nil | `nil` | | db_path | string defining database file path for 149 150 use with sqlite persistence | plugin install directory | | bind_indices | 150 - optional string to be used for keybind prefix for pasting by index number 151 - (i.e. "p") | `nil` | | pickers | table containing all pickers. | `{}` | | 151 + optional string to be used for keybind prefix for pasting by index number (i.e. 152 + "p") | `nil` | | pickers | table containing all pickers. | `{}` | | 152 153 pickers.snacks | boolean | `false` | 153 154 154 155 ··· 188 189 The 'num_behavior' option defines in-popup navigation behavior when hitting 189 190 number keys. - `num_behavior = "prefix"` works similar to traditional vim 190 191 navigation with '3j' moving down 3 entries in the bank. - `num_behavior = 191 - "jump"` jumps to entry matching the pressed number key (i.e. '3' jumps to 192 - entry 3) - Note: If 'max_entries' is a two-digit number, there will be a delay 193 - upon pressing numbers that prefix a valid entry. 192 + "jump"` jumps to entry matching the pressed number key (i.e. '3' jumps to entry 193 + 3) - Note: If 'max_entries' is a two-digit number, there will be a delay upon 194 + pressing numbers that prefix a valid entry. 194 195 195 196 The 'focus_gain_poll' option allows for enabling an additional autocommand that 196 197 watches for focus gains (refocusing Neovim window), and checks for changes in ··· 228 229 If you run into any SQL related issues, please file an issue on GitHub. (As a 229 230 temporary fix, you can also try clearing the database) 230 231 231 - If you run into permissions issues when creating the db file (i.e. when 232 + If you run into permissions issues when creating the db file (i.e. when 232 233 installing using Nix), use the `db_path` option to change the default file 233 234 path. (`vim.fn.stdpath("data")` should work) 234 235