-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PowerShell autocompletion script (#535)
* Add PowerShell autocompletion script * Update lf.ps1
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Autocompletion for PowerShell. | ||
# | ||
# You need to either copy the content of this file to $PROFILE | ||
# or call this script directly. | ||
# | ||
|
||
using namespace System.Management.Automation | ||
|
||
Register-ArgumentCompleter -Native -CommandName 'lf' -ScriptBlock { | ||
param($wordToComplete) | ||
$completions = @( | ||
[CompletionResult]::new('-command ', '-command', [CompletionResultType]::ParameterName, 'command to execute on client initialization') | ||
[CompletionResult]::new('-cpuprofile ', '-cpuprofile', [CompletionResultType]::ParameterName, 'path to the file to write the CPU profile') | ||
[CompletionResult]::new('-doc', '-doc', [CompletionResultType]::ParameterName, 'show documentation') | ||
[CompletionResult]::new('-last-dir-path ', '-last-dir-path', [CompletionResultType]::ParameterName, 'path to the file to write the last dir on exit (to use for cd)') | ||
[CompletionResult]::new('-memprofile ', '-memprofile', [CompletionResultType]::ParameterName, 'path to the file to write the memory profile') | ||
[CompletionResult]::new('-remote ', '-remote', [CompletionResultType]::ParameterName, 'send remote command to server') | ||
[CompletionResult]::new('-selection-path ', '-selection-path', [CompletionResultType]::ParameterName, 'path to the file to write selected files on open (to use as open file dialog)') | ||
[CompletionResult]::new('-server', '-server', [CompletionResultType]::ParameterName, 'start server (automatic)') | ||
[CompletionResult]::new('-version', '-version', [CompletionResultType]::ParameterName, 'show version') | ||
) | ||
|
||
if ($wordToComplete.StartsWith('-')) { | ||
$completions.Where{ $_.CompletionText -like "$wordToComplete*" } | Sort-Object -Property ListItemText | ||
} | ||
} |