From 478812507b9a7088bc25274e73e525af6e610977 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Thu, 6 Nov 2025 16:28:54 +0000 Subject: [PATCH] deploy: ba15db2a1565e1779de23bdbacbc420412648289 --- options.xhtml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/options.xhtml b/options.xhtml index c367d9afa..9c2c63a39 100644 --- a/options.xhtml +++ b/options.xhtml @@ -32462,6 +32462,45 @@ boolean

Example: true

+

Declared by:

+ + +
+ +<home-manager/modules/programs/fish.nix> + +
+ +
+ + programs.fish.completions + + +
+
+

Custom fish completions. For more information see +https://fishshell.com/docs/current/completions.html.

+ +

Type: +attribute set of (strings concatenated with ā€œ\nā€ or (submodule))

+ +

Default: +{ }

+ +

Example:

{
+  my-prog = ''
+    complete -c myprog -s o -l output
+  '';
+
+  my-app = {
+    body = ''
+      complete -c myapp -s -v
+    '';
+  };
+}
+
+
+

Declared by: