131 lines
		
	
	
		
			9.5 KiB
		
	
	
	
		
			PowerShell
		
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			9.5 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('-') -or
 | |
|                 $element.Value -eq $wordToComplete) {
 | |
|                 break
 | |
|         }
 | |
|         $element.Value
 | |
|     }) -join ';'
 | |
| 
 | |
|     $completions = @(switch ($command) {
 | |
|         'zoxide' {
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('add', 'add', [CompletionResultType]::ParameterValue, 'Add a new directory or increment its rank')
 | |
|             [CompletionResult]::new('edit', 'edit', [CompletionResultType]::ParameterValue, 'Edit the database')
 | |
|             [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('-s', '-s', [CompletionResultType]::ParameterName, 'The rank to increment the entry if it exists or initialize it with if it doesn''t')
 | |
|             [CompletionResult]::new('--score', '--score', [CompletionResultType]::ParameterName, 'The rank to increment the entry if it exists or initialize it with if it doesn''t')
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;edit' {
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('decrement', 'decrement', [CompletionResultType]::ParameterValue, 'decrement')
 | |
|             [CompletionResult]::new('delete', 'delete', [CompletionResultType]::ParameterValue, 'delete')
 | |
|             [CompletionResult]::new('increment', 'increment', [CompletionResultType]::ParameterValue, 'increment')
 | |
|             [CompletionResult]::new('reload', 'reload', [CompletionResultType]::ParameterValue, 'reload')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;edit;decrement' {
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;edit;delete' {
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;edit;increment' {
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;edit;reload' {
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             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, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;init' {
 | |
|             [CompletionResult]::new('--cmd', '--cmd', [CompletionResultType]::ParameterName, 'Changes the prefix of the `z` and `zi` commands')
 | |
|             [CompletionResult]::new('--hook', '--hook', [CompletionResultType]::ParameterName, 'Changes how often zoxide increments a directory''s score')
 | |
|             [CompletionResult]::new('--no-cmd', '--no-cmd', [CompletionResultType]::ParameterName, 'Prevents zoxide from defining the `z` and `zi` commands')
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;query' {
 | |
|             [CompletionResult]::new('--exclude', '--exclude', [CompletionResultType]::ParameterName, 'Exclude the current directory')
 | |
|             [CompletionResult]::new('-a', '-a', [CompletionResultType]::ParameterName, 'Show unavailable directories')
 | |
|             [CompletionResult]::new('--all', '--all', [CompletionResultType]::ParameterName, 'Show unavailable 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, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|         'zoxide;remove' {
 | |
|             [CompletionResult]::new('-h', '-h', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('--help', '--help', [CompletionResultType]::ParameterName, 'Print help')
 | |
|             [CompletionResult]::new('-V', '-V ', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             [CompletionResult]::new('--version', '--version', [CompletionResultType]::ParameterName, 'Print version')
 | |
|             break
 | |
|         }
 | |
|     })
 | |
| 
 | |
|     $completions.Where{ $_.CompletionText -like "$wordToComplete*" } |
 | |
|         Sort-Object -Property ListItemText
 | |
| }
 |