79 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			PowerShell
		
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			PowerShell
		
	
	
	
| 
 | |
| using namespace System.Management.Automation
 | |
| using namespace System.Management.Automation.Language
 | |
| 
 | |
| Register-ArgumentCompleter -Native -CommandName 'zoxide' -ScriptBlock {
 | |
|     param($wordToComplete, $commandAst, $cursorPosition)
 | |
| 
 | |
|     $commandElements = $commandAst.CommandElements
 | |
|     $command = @(
 | |
|         'zoxide'
 | |
|         for ($i = 1; $i -lt $commandElements.Count; $i++) {
 | |
|             $element = $commandElements[$i]
 | |
|             if ($element -isnot [StringConstantExpressionAst] -or
 | |
|                 $element.StringConstantType -ne [StringConstantType]::BareWord -or
 | |
|                 $element.Value.StartsWith('-')) {
 | |
|                 break
 | |
|         }
 | |
|         $element.Value
 | |
|     }) -join ';'
 | |
| 
 | |
|     $completions = @(switch ($command) {
 | |
|         'zoxide' {
 | |
|             [CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             [CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             [CompletionResult]::new('-V', 'V', [CompletionResultType]::ParameterName, 'Prints version information')
 | |
|             [CompletionResult]::new('--version', 'version', [CompletionResultType]::ParameterName, 'Prints version information')
 | |
|             [CompletionResult]::new('add', 'add', [CompletionResultType]::ParameterValue, 'Add a new directory or increment its rank')
 | |
|             [CompletionResult]::new('import', 'import', [CompletionResultType]::ParameterValue, 'Import entries from another application')
 | |
|             [CompletionResult]::new('init', 'init', [CompletionResultType]::ParameterValue, 'Generate shell configuration')
 | |
|             [CompletionResult]::new('query', 'query', [CompletionResultType]::ParameterValue, 'Search for a directory in the database')
 | |
|             [CompletionResult]::new('remove', 'remove', [CompletionResultType]::ParameterValue, 'Remove a directory from the database')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;add' {
 | |
|             [CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             [CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;import' {
 | |
|             [CompletionResult]::new('--from', 'from', [CompletionResultType]::ParameterName, 'Application to import from')
 | |
|             [CompletionResult]::new('--merge', 'merge', [CompletionResultType]::ParameterName, 'Merge into existing database')
 | |
|             [CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             [CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;init' {
 | |
|             [CompletionResult]::new('--cmd', 'cmd', [CompletionResultType]::ParameterName, 'Renames the ''z'' command and corresponding aliases')
 | |
|             [CompletionResult]::new('--hook', 'hook', [CompletionResultType]::ParameterName, 'Chooses event upon which an entry is added to the database')
 | |
|             [CompletionResult]::new('--no-aliases', 'no-aliases', [CompletionResultType]::ParameterName, 'Prevents zoxide from defining any commands')
 | |
|             [CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             [CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;query' {
 | |
|             [CompletionResult]::new('--exclude', 'exclude', [CompletionResultType]::ParameterName, 'Exclude a path from results')
 | |
|             [CompletionResult]::new('--all', 'all', [CompletionResultType]::ParameterName, 'Show deleted directories')
 | |
|             [CompletionResult]::new('-i', 'i', [CompletionResultType]::ParameterName, 'Use interactive selection')
 | |
|             [CompletionResult]::new('--interactive', 'interactive', [CompletionResultType]::ParameterName, 'Use interactive selection')
 | |
|             [CompletionResult]::new('-l', 'l', [CompletionResultType]::ParameterName, 'List all matching directories')
 | |
|             [CompletionResult]::new('--list', 'list', [CompletionResultType]::ParameterName, 'List all matching directories')
 | |
|             [CompletionResult]::new('-s', 's', [CompletionResultType]::ParameterName, 'Print score with results')
 | |
|             [CompletionResult]::new('--score', 'score', [CompletionResultType]::ParameterName, 'Print score with results')
 | |
|             [CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             [CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;remove' {
 | |
|             [CompletionResult]::new('-i', 'i', [CompletionResultType]::ParameterName, 'i')
 | |
|             [CompletionResult]::new('--interactive', 'interactive', [CompletionResultType]::ParameterName, 'interactive')
 | |
|             [CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             [CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Prints help information')
 | |
|             break
 | |
|         }
 | |
|     })
 | |
| 
 | |
|     $completions.Where{ $_.CompletionText -like "$wordToComplete*" } |
 | |
|         Sort-Object -Property ListItemText
 | |
| }
 |