mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +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.
|
Sets the register to use for the clipboard.
|
||||||
Learn more in [`:h 'clipboard'`](https://neovim.io/doc/user/options.html#'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;
|
default = null;
|
||||||
example = "unnamedplus";
|
example = "unnamedplus";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue