mirror of
https://github.com/go-task/task.git
synced 2026-07-01 08:34:19 +00:00
62 lines
2.2 KiB
PowerShell
62 lines
2.2 KiB
PowerShell
using namespace System.Management.Automation
|
|
|
|
# Thin wrapper around `task __complete`. All suggestion logic lives in the
|
|
# Go engine — do not add completion logic here.
|
|
|
|
$cmdNames = @('task') + (Get-Alias -Definition task,task.exe,*\task,*\task.exe -ErrorAction SilentlyContinue).Name | Select-Object -Unique
|
|
|
|
Register-ArgumentCompleter -Native -CommandName $cmdNames -ScriptBlock {
|
|
param($wordToComplete, $commandAst, $cursorPosition)
|
|
|
|
$TaskExe = if ($env:TASK_EXE) { $env:TASK_EXE } else { 'task' }
|
|
|
|
# Words after the program name, truncated to the cursor.
|
|
$argsToPass = @()
|
|
$elements = $commandAst.CommandElements
|
|
if ($elements.Count -gt 1) {
|
|
for ($i = 1; $i -lt $elements.Count; $i++) {
|
|
$el = $elements[$i]
|
|
if ($el.Extent.StartOffset -ge $cursorPosition) { break }
|
|
$argsToPass += $el.ToString()
|
|
}
|
|
}
|
|
# The trailing word (possibly empty) must reach the engine so it knows
|
|
# the cursor sits on a fresh word.
|
|
if ($argsToPass.Count -gt 0 -and $argsToPass[-1] -eq $wordToComplete) {
|
|
$argsToPass[-1] = $wordToComplete
|
|
} else {
|
|
$argsToPass += $wordToComplete
|
|
}
|
|
|
|
$output = & $TaskExe __complete @argsToPass 2>$null
|
|
if (-not $output) { return }
|
|
|
|
$lines = @($output)
|
|
if ($lines.Count -eq 0) { return }
|
|
$last = $lines[-1]
|
|
if (-not $last.StartsWith(':')) { return }
|
|
|
|
$directive = [int]($last.Substring(1))
|
|
$data = if ($lines.Count -gt 1) { $lines[0..($lines.Count - 2)] } else { @() }
|
|
|
|
# FilterFileExt
|
|
if ($directive -band 8) {
|
|
$patterns = $data | ForEach-Object { "*.$_" }
|
|
return Get-ChildItem -Path . -Include $patterns -File -ErrorAction SilentlyContinue |
|
|
ForEach-Object { [CompletionResult]::new($_.Name, $_.Name, [CompletionResultType]::ProviderItem, $_.Name) }
|
|
}
|
|
|
|
# FilterDirs
|
|
if ($directive -band 16) {
|
|
return Get-ChildItem -Path . -Directory -ErrorAction SilentlyContinue |
|
|
ForEach-Object { [CompletionResult]::new($_.Name, $_.Name, [CompletionResultType]::ProviderContainer, $_.Name) }
|
|
}
|
|
|
|
return $data | ForEach-Object {
|
|
$parts = $_ -split "`t", 2
|
|
$value = $parts[0]
|
|
$desc = if ($parts.Count -gt 1 -and $parts[1]) { $parts[1] } else { $value }
|
|
[CompletionResult]::new($value, $value, [CompletionResultType]::ParameterValue, $desc)
|
|
}
|
|
}
|