···11-*yankbank-nvim.txt* For Neovim >= 0.7.0 Last change: 2026 January 17
11+*yankbank-nvim.txt*
22+ For Neovim >= 0.7.0 Last change: 2026 April 19
2334==============================================================================
45Table of Contents *yankbank-nvim-table-of-contents*
···147148yank from popup to | `"+"` | | persist_type | string defining persistence type
148149"sqlite" or nil | `nil` | | db_path | string defining database file path for
149150use with sqlite persistence | plugin install directory | | bind_indices |
150150-optional string to be used for keybind prefix for pasting by index number
151151-(i.e. "p") | `nil` | | pickers | table containing all pickers. | `{}` | |
151151+optional string to be used for keybind prefix for pasting by index number (i.e.
152152+"p") | `nil` | | pickers | table containing all pickers. | `{}` | |
152153pickers.snacks | boolean | `false` |
153154154155···188189The 'num_behavior' option defines in-popup navigation behavior when hitting
189190number keys. - `num_behavior = "prefix"` works similar to traditional vim
190191navigation with '3j' moving down 3 entries in the bank. - `num_behavior =
191191-"jump"` jumps to entry matching the pressed number key (i.e. '3' jumps to
192192-entry 3) - Note: If 'max_entries' is a two-digit number, there will be a delay
193193-upon pressing numbers that prefix a valid entry.
192192+"jump"` jumps to entry matching the pressed number key (i.e. '3' jumps to entry
193193+3) - Note: If 'max_entries' is a two-digit number, there will be a delay upon
194194+pressing numbers that prefix a valid entry.
194195195196The 'focus_gain_poll' option allows for enabling an additional autocommand that
196197watches for focus gains (refocusing Neovim window), and checks for changes in
···228229If you run into any SQL related issues, please file an issue on GitHub. (As a
229230temporary fix, you can also try clearing the database)
230231231231-If you run into permissions issues when creating the db file (i.e. when
232232+If you run into permissions issues when creating the db file (i.e. when
232233installing using Nix), use the `db_path` option to change the default file
233234path. (`vim.fn.stdpath("data")` should work)
234235