-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSISEReadline.psd1
44 lines (33 loc) · 1.26 KB
/
PSISEReadline.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
@{
Description = 'A lightweight implementation of PSReadLine for ISE. Provides bck-i-search functionality.'
ModuleVersion = '0.1.0'
HelpInfoURI = 'https://github.com/fsackur/PSISEReadline'
Author = 'Freddie Sackur'
CompanyName = 'DustyFox'
Copyright = '(c) 2020 Freddie Sackur. All rights reserved.'
CompatiblePSEditions = @('Desktop')
PowerShellHostName = 'Windows PowerShell ISE Host'
PowerShellVersion = '4.0'
GUID = '96cab1e7-8645-4d9e-bb73-601c2555b08e'
RootModule = 'PSISEReadline.psm1'
FunctionsToExport = @(
'Register-PSISEReadlineShortcut',
'Invoke-PSISEReadline' # Use the alias, though
)
AliasesToExport = @(
'bck-i-search'
)
PrivateData = @{
PSData = @{
LicenseUri = 'https://raw.githubusercontent.com/fsackur/PSISEReadline/main/LICENSE'
ProjectUri = 'https://github.com/fsackur/PSISEReadline'
Tags = @(
'Readline',
'PSReadline',
'bck-i-search',
'Console',
'History'
)
}
}
}