From ef8d57aba0a4b436632730b558d3996019b3a698 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Fri, 15 Nov 2024 15:26:50 -0300 Subject: [PATCH] modules/clipboard: allow raw lua code in register option --- modules/clipboard.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/clipboard.nix b/modules/clipboard.nix index 9b7324e4..f0949f1f 100644 --- a/modules/clipboard.nix +++ b/modules/clipboard.nix @@ -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"; };