github.com/zaquestion/lab@v0.25.1/docs/lab_completion.md (about)

     1  ## lab completion
     2  
     3  Generates autocompletion for different shell implementations
     4  
     5  ### Synopsis
     6  
     7  Generates shell autocompletion scripts for different implementations.
     8  
     9  These scripts can be directly sourced, though using pre-generated
    10  versions is recommended to avoid shell startup delay.
    11  
    12  ```
    13  lab completion [shell] [flags]
    14  ```
    15  
    16  ### Examples
    17  
    18  ```
    19  bash       : source <(lab completion)
    20  elvish     : eval(lab completion|slurp)
    21  fish       : lab completion | source
    22  oil        : source <(lab completion)
    23  powershell : lab completion | Out-String | Invoke-Expression
    24  xonsh      : exec($(lab completion xonsh))
    25  zsh        : source <(lab completion zsh)
    26  ```
    27  
    28  ### Options
    29  
    30  ```
    31    -h, --help   help for completion
    32  ```
    33  
    34  ### Options inherited from parent commands
    35  
    36  ```
    37        --debug      Enable debug logging level
    38        --no-pager   Do not pipe output into a pager
    39        --quiet      Turn off any sort of logging. Only command output is printed
    40  ```
    41  
    42  ### SEE ALSO
    43  
    44  * [lab](index.md)	 - lab: A GitLab Command Line Interface Utility
    45  
    46  ###### Auto generated by spf13/cobra on 27-Jun-2022