mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
modules/clipboard: allow raw lua code in register option
This commit is contained in:
parent
5095066df6
commit
ef8d57aba0
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ in
|
|||
Sets the register to use for the clipboard.
|
||||
Learn more in [`:h 'clipboard'`](https://neovim.io/doc/user/options.html#'clipboard').
|
||||
'';
|
||||
type = with lib.types; nullOr (either str (listOf str));
|
||||
type = with lib.types; nullOr (maybeRaw (either str (listOf (maybeRaw str))));
|
||||
default = null;
|
||||
example = "unnamedplus";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue