mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 22:10:03 +01:00
Merge pull request #951 from lackac/fix/yanky-assertion
yanky-nvim: fix shada assertion condition
This commit is contained in:
commit
77a32f0961
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ in {
|
||||||
|
|
||||||
assertions = [
|
assertions = [
|
||||||
{
|
{
|
||||||
assertion = usingShada && ((config.vim.options.shada or "") == "");
|
assertion = usingShada -> (config.vim.options.shada or "") != "";
|
||||||
message = ''
|
message = ''
|
||||||
Yanky.nvim is configured to use 'shada' for the storage backend, but shada is disabled
|
Yanky.nvim is configured to use 'shada' for the storage backend, but shada is disabled
|
||||||
in 'vim.options'. Please re-enable shada, or switch to a different backend.
|
in 'vim.options'. Please re-enable shada, or switch to a different backend.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue