MyNixOS website logo

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

Declarations
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
    '';
  };
}