forked from kelleyma49/PSFzf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSFzf.TabExpansion.ps1
346 lines (300 loc) · 11.8 KB
/
PSFzf.TabExpansion.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# borrowed from https://github.com/dahlbyk/posh-git/blob/f69efd9229029519adb32e37a464b7e1533a372c/src/GitTabExpansion.ps1#L81
filter script:quoteStringWithSpecialChars {
if ($_ -and ($_ -match '\s+|#|@|\$|;|,|''|\{|\}|\(|\)')) {
$str = $_ -replace "'", "''"
"'$str'"
}
else {
$_
}
}
# taken from https://github.com/dahlbyk/posh-git/blob/2ad946347e7342199fd4bb1b42738833f68721cd/src/GitUtils.ps1#L407
function script:Get-AliasPattern($cmd) {
$aliases = @($cmd) + @(Get-Alias | Where-Object { $_.Definition -eq $cmd } | Select-Object -Exp Name)
"($($aliases -join '|'))"
}
function Expand-GitWithFzf($lastBlock) {
$gitResults = Expand-GitCommand $lastBlock
# if no results, invoke filesystem completion:
if ($null -eq $gitResults) {
$results = Invoke-Fzf -Multi | script:quoteStringWithSpecialChars
} else {
$results = $gitResults | Invoke-Fzf -Multi | script:quoteStringWithSpecialChars
}
if ($results.Count -gt 1) {
$results -join ' '
} else {
if (-not $null -eq $results) {
$results
} else {
'' # output something to prevent default tab expansion
}
}
#HACK: workaround for fact that PSReadLine seems to clear screen
# after keyboard shortcut action is executed:
[Microsoft.PowerShell.PSConsoleReadLine]::InvokePrompt()
}
function Expand-FileDirectoryPath($lastWord) {
# find dir and file pattern connected to the trigger:
$lastWord = $lastWord.Substring(0, $lastWord.Length - 2)
if ($lastWord.EndsWith('\')) {
$dir = $lastWord.Substring(0, $lastWord.Length - 1)
$file = $null
} elseif (-not [string]::IsNullOrWhiteSpace($lastWord)) {
$dir = Split-Path $lastWord -Parent
$file = Split-Path $lastWord -Leaf
}
if (-not [System.IO.Path]::IsPathRooted($dir)) {
$dir = Join-Path $PWD.Path $dir
}
$prevPath = $Pwd.Path
try {
if (-not [string]::IsNullOrEmpty($dir)) {
Set-Location $dir
}
if (-not [string]::IsNullOrEmpty($file)) {
Invoke-Fzf -Query $file
}
else {
Invoke-Fzf
}
}
finally {
Set-Location $prevPath
}
#HACK: workaround for fact that PSReadLine seems to clear screen
# after keyboard shortcut action is executed:
[Microsoft.PowerShell.PSConsoleReadLine]::InvokePrompt()
}
$script:TabExpansionEnabled = $false
function SetTabExpansion($enable)
{
if ($enable) {
if (-not $script:TabExpansionEnabled) {
$script:TabExpansionEnabled = $true
RegisterBuiltinCompleters
Register-ArgumentCompleter -CommandName git,tgit,gitk -Native -ScriptBlock {
param($wordToComplete, $commandAst, $cursorPosition)
# The PowerShell completion has a habit of stripping the trailing space when completing:
# git checkout <tab>
# The Expand-GitCommand expects this trailing space, so pad with a space if necessary.
$padLength = $cursorPosition - $commandAst.Extent.StartOffset
$textToComplete = $commandAst.ToString().PadRight($padLength, ' ').Substring(0, $padLength)
Expand-GitCommandPsFzf $textToComplete
}
}
} else {
if ($script:TabExpansionEnabled) {
$script:TabExpansionEnabled = $false
}
}
}
function CheckFzfTrigger {
param($commandName, $parameterName, $wordToComplete, $commandAst, $cursorPosition,$action)
if ([string]::IsNullOrWhiteSpace($env:FZF_COMPLETION_TRIGGER)) {
$completionTrigger = '**'
} else {
$completionTrigger = $env:FZF_COMPLETION_TRIGGER
}
if ($wordToComplete.EndsWith($completionTrigger)) {
$wordToComplete = $wordToComplete.Substring(0, $wordToComplete.Length - $completionTrigger.Length)
$wordToComplete
}
}
function GetServiceSelection() {
param(
[scriptblock]
$ResultAction
)
$header = [System.Environment]::NewLine + $("{0,-24} NAME" -f "DISPLAYNAME") + [System.Environment]::NewLine
$result = Get-Service | Where-Object { ![string]::IsNullOrEmpty($_.Name) } | ForEach-Object {
"{0,-24} {1}" -f $_.DisplayName.Substring(0,[System.Math]::Min(24,$_.DisplayName.Length)),$_.Name } | Invoke-Fzf -Multi -Header $header
$result | ForEach-Object {
&$ResultAction $_
}
}
function RegisterBuiltinCompleters {
$processIdOrNameScriptBlock = {
param($commandName, $parameterName, $wordToComplete, $commandAst, $cursorPosition, $action)
$wordToComplete = CheckFzfTrigger $commandName $parameterName $wordToComplete $commandAst $cursorPosition
if ($null -ne $wordToComplete)
{
if ($parameterName -eq 'Name') {
$group = '$2'
} elseif ($parameterName -eq 'Id') {
$group = '$1'
}
$script:resultArr = @()
GetProcessSelection -ResultAction {
param($result)
$script:resultArr += $result -replace "([0-9]+)\s*(.*)",$group
}
if ($script:resultArr.Length -ge 1) {
$script:resultArr -join ', '
}
#HACK: workaround for fact that PSReadLine seems to clear screen
# after keyboard shortcut action is executed:
[Microsoft.PowerShell.PSConsoleReadLine]::InvokePrompt()
} else {
# don't return anything - let normal tab completion work
}
}
'Get-Process','Stop-Process' | ForEach-Object {
Register-ArgumentCompleter -CommandName $_ -ParameterName "Name" -ScriptBlock $processIdOrNameScriptBlock
Register-ArgumentCompleter -CommandName $_ -ParameterName "Id" -ScriptBlock $processIdOrNameScriptBlock
}
$serviceNameScriptBlock = {
param($commandName, $parameterName, $wordToComplete, $commandAst, $cursorPosition,$action)
$wordToComplete = CheckFzfTrigger $commandName $parameterName $wordToComplete $commandAst $cursorPosition
if ($null -ne $wordToComplete)
{
if ($parameterName -eq 'Name') {
$group = '$2'
} elseif ($parameterName -eq 'DisplayName') {
$group = '$1'
}
$script:resultArr = @()
GetServiceSelection -ResultAction {
param($result)
$script:resultArr += $result.Substring(24+1)
}
if ($script:resultArr.Length -ge 1) {
$script:resultArr -join ', '
}
#HACK: workaround for fact that PSReadLine seems to clear screen
# after keyboard shortcut action is executed:
[Microsoft.PowerShell.PSConsoleReadLine]::InvokePrompt()
} else {
# don't return anything - let normal tab completion work
}
}
'Get-Service','Start-Service','Stop-Service' | ForEach-Object {
Register-ArgumentCompleter -CommandName $_ -ParameterName "Name" -ScriptBlock $serviceNameScriptBlock
Register-ArgumentCompleter -CommandName $_ -ParameterName "DisplayName" -ScriptBlock $serviceNameScriptBlock
}
}
function Expand-GitCommandPsFzf($lastWord) {
if ([string]::IsNullOrWhiteSpace($env:FZF_COMPLETION_TRIGGER)) {
$completionTrigger = '**'
}
else {
$completionTrigger = $env:FZF_COMPLETION_TRIGGER
}
if ($lastWord.EndsWith($completionTrigger)) {
$lastWord = $lastWord.Substring(0, $lastWord.Length - $completionTrigger.Length)
Expand-GitWithFzf $lastWord
} else {
Expand-GitCommand $lastWord
}
}
function Invoke-FzfTabCompletion()
{
$script:continueCompletion = $true
do
{
$script:continueCompletion = script:Invoke-FzfTabCompletionInner
}
while ($script:continueCompletion)
}
function script:Invoke-FzfTabCompletionInner()
{
$script:result = @()
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Management.Automation")
$line = $null
$cursor = $null
[Microsoft.PowerShell.PSConsoleReadline]::GetBufferState([ref]$line, [ref]$cursor)
if ($cursor -lt 0 -or [string]::IsNullOrWhiteSpace($line)) {
return $false
}
$completions = [System.Management.Automation.CommandCompletion]::CompleteInput($line, $cursor, @{})
$completionMatches = $completions.CompletionMatches
if ($completionMatches.Count -le 0) {
return $false
}
$script:continueCompletion = $false
$addSpace = $null -ne $currentPath -and $currentPath.StartsWith(" ")
if ($completionMatches.Count -eq 1) {
$script:result = $completionMatches[0].CompletionText
} elseif ($completionMatches.Count -gt 1) {
$helpers = New-Object PSFzf.IO.CompletionHelpers
$ambiguous = $false
$addSpace = $false
$prefix = $helpers.GetUnambiguousPrefix($completionMatches,[ref]$ambiguous)
$script:result = @()
$script:checkCompletion = $true
$expectTrigger = $script:TabContinuousTrigger
# need to escape the key if it's a forward slash:
if ($expectTrigger -eq '\') {
$expectTrigger += $expectTrigger
}
# normalize so path works correctly for Windows:
$path = $PWD.Path.Replace('\','/')
$previewScript = $(Join-Path $PsScriptRoot 'helpers/PsFzfTabExpansion-Preview.ps1')
$additionalCmd = @{ Preview=$("pwsh -NoProfile -NonInteractive -File \""$previewScript\"" \""" + $path + "\"" {}") }
$script:fzfOutput = @()
$completionMatches | ForEach-Object { $_.CompletionText } | Invoke-Fzf `
-Layout reverse `
-Expect $expectTrigger `
-Query "$prefix" `
-PrintQuery `
-Bind 'tab:down,btab:up' `
@additionalCmd | ForEach-Object {
if ($null -eq $_) {
$script:fzfOutput += ""
} else {
$script:fzfOutput += $_
}
}
# check if there's a selection:
if ($script:fzfOutput.Length -gt 2) {
$script:result = $script:fzfOutput[2..($script:fzfOutput.Length-1)]
}
# or just complete with the query string:
else {
$script:result = $script:fzfOutput[0]
}
# check if we should continue completion:
$script:continueCompletion = $script:fzfOutput[1] -eq $script:TabContinuousTrigger
#HACK: workaround for fact that PSReadLine seems to clear screen
# after keyboard shortcut action is executed:
[Microsoft.PowerShell.PSConsoleReadLine]::InvokePrompt()
}
$result = $script:result
if ($null -ne $result) {
# quote strings if we need to:
if ($result -is [system.array]) {
for ($i = 0;$i -lt $result.Length;$i++) {
$result[$i] = FixCompletionResult $result[$i]
}
$str = $result -join ','
} else {
$str = FixCompletionResult $result
}
if ($script:continueCompletion) {
$isQuoted = $str.EndsWith("'")
$resultTrimmed = $str.Trim(@('''','"'))
if (Test-Path "$resultTrimmed" -PathType Container) {
if ($isQuoted) {
$str = "'{0}{1}'" -f "$resultTrimmed",$script:TabContinuousTrigger
} else {
$str = "$resultTrimmed" + $script:TabContinuousTrigger
}
} else {
# no more paths to complete, so let's stop completion:
$str += ' '
$script:continueCompletion = $false
}
}
if ($addSpace) {
$str = ' ' + $str
}
$leftCursor = $completions.ReplacementIndex
$replacementLength = $completions.ReplacementLength
if ($leftCursor -le 0 -and $replacementLength -le 0) {
[Microsoft.PowerShell.PSConsoleReadLine]::Insert($str)
} else {
[Microsoft.PowerShell.PSConsoleReadLine]::Replace($leftCursor,$replacementLength,$str)
}
}
return $script:continueCompletion
}