-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLittleTrainPrompt.psd1
48 lines (48 loc) · 2.78 KB
/
LittleTrainPrompt.psd1
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
@{
RootModule = 'LittleTrainPrompt.psm1'
ModuleVersion = '0.1'
GUID = '642adc8b-610d-4e7b-a13d-a54801942353'
Author = 'Namorzyny'
Copyright = '(c) 2019 Namorzyny. All rights reserved.'
Description = ''
PowerShellVersion = '5.0'
FunctionsToExport = @(
'Get-PromptComponent',
'Get-PromptComponentOrder',
'Set-PromptComponentOrder',
'Register-PromptComponent',
'Unregister-PromptComponent',
'Find-PromptOption',
'Get-PromptOption',
'Set-PromptOption',
'Remove-PromptOption'
'New-PromptSegment'
'New-PromptStyle',
'Add-PromptStyle',
'Get-PromptStyle',
'Remove-PromptStyle',
'Get-CurrentPromptStyle',
'Set-CurrentPromptStyle',
'Get-CurrentPromptStyleName',
'Get-InnerSeparatorSymbol'
'Get-LastExecutionStatus',
'Get-LastExecutedCommand',
'Test-IsElevated',
'Test-HasNewExecutedCommand',
'Get-CurrentDriveName',
'Get-CurrentDriveType',
'Get-CurrentPlatform'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
# Tags = @()
# LicenseUri = ''
# ProjectUri = ''
# IconUri = ''
# ReleaseNotes = ''
}
}
}