-
Notifications
You must be signed in to change notification settings - Fork 0
/
FzfBindings.psd1
89 lines (76 loc) · 2.32 KB
/
FzfBindings.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
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
# Copyright (c) Aleksandr Kostikov
# Licensed under the MIT License.
@{
# Script module or binary module file associated with this manifest
RootModule = 'FzfBindings.psm1'
# Version number of this module.
ModuleVersion = '1.6.20240826'
# ID used to uniquely identify this module
GUID = 'fb98390c-1080-4d3a-ab8a-439d02e995f6'
# Author of this module
Author = 'Aleksandr Kostikov, [email protected]'
# Copyright statement for this module
Copyright = '(c) Aleksandr Kostikov'
# Description of the functionality provided by this module
Description = 'Cross platform powershell bindings for fzf'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.0'
# Cmdlets to export from this module
CmdletsToExport = '*'
# Variables to export from this module
VariablesToExport = '*'
# Aliases to export from this module
AliasesToExport = @(
"cdf",
"clrf",
"codef",
"cof",
"hf",
"hlp",
"killf",
"pf",
"prf",
"pushf",
"rgf",
"startf"
)
# Functions to export from this module
FunctionsToExport = @(
"Clear-GitBranch",
"Get-GitBranch",
"Get-GitPrBranch",
"Resolve-GitMasterBranch",
"Invoke-CodeFzf",
"Invoke-HistoryFzf",
"Push-LocationFzf",
"Search-RipgrepFzf",
"Select-GitBranch",
"Send-GitBranch",
"Set-LocationFzf",
"Show-Help",
"Show-PreviewFzf",
"Start-ProcessFzf",
"Stop-ProcessFzf",
"Update-GitLineEndingsMitigation",
"Repair-ConsoleMode"
)
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @()
# List of all files packaged with this module
FileList = @(
".\FzfBindings.psd1",
".\FzfBindings.psm1",
".\Initialize-GitFzf.ps1",
".\Initialize-ShellFzf.ps1",
".\notes.md",
".\readme.md",
".\Bin\.gitignore",
".\Bin\Walker\walker.exe",
".\Data\excluded_folders",
".\Data\picture_extensions",
".\Preview\Show-FileEntry.ps1",
".\Preview\Show-GitBranch.ps1",
".\Walk\Get-FileEntry.ps1",
".\Walk\Get-Folder.ps1"
)
}