From 478812507b9a7088bc25274e73e525af6e610977 Mon Sep 17 00:00:00 2001
From: khaneliman
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: