nix-community.nixvim/tests/test-sources/plugins/by-name/nvim-osc52/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
510 B
Nix
Raw Normal View History

let
# This plugin is deprecated
warnings = expect: [
(expect "count" 1)
(expect "any" "this plugin is obsolete and will be removed after 24.11.")
];
in
{
empty = {
plugins.nvim-osc52.enable = true;
test = { inherit warnings; };
};
defaults = {
plugins.nvim-osc52 = {
enable = true;
maxLength = 0;
silent = false;
trim = false;
keymaps = {
silent = false;
enable = true;
};
};
test = { inherit warnings; };
};
}