From 37dbf9d2e211ac5ad47a4cc958e46948be14e46c Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Wed, 5 Jun 2024 08:04:33 +0100 Subject: [PATCH] modules/clipboard: use md link in description Use a markdown-syntax link so that the docs show a clickable-link. --- modules/clipboard.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/clipboard.nix b/modules/clipboard.nix index 9c9c76faab..f8cbce076f 100644 --- a/modules/clipboard.nix +++ b/modules/clipboard.nix @@ -14,7 +14,7 @@ in register = mkOption { description = '' Sets the register to use for the clipboard. - Learn more at https://neovim.io/doc/user/options.html#'clipboard'. + Learn more in [`:h 'clipboard'`](https://neovim.io/doc/user/options.html#'clipboard'). ''; type = with types; nullOr (either str (listOf str)); default = null;