forked from kelleyma49/PSFzf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSFzf.Git.ps1
149 lines (129 loc) · 5 KB
/
PSFzf.Git.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
$script:GitKeyHandlers = @()
$script:gitPath = $null
$script:bashPath = $null
$script:gitPathLong = $null
function SetGitKeyBindings($enable)
{
if ($IsLinux -or $IsMacOS) {
Write-Error "Failed to register git key bindings - git bindings aren't supported on non-Windows platforms"
}
if ($enable)
{
if ($null -eq $gitPath) {
$gitInfo = Get-Command git.exe -ErrorAction SilentlyContinue
if ($null -ne $gitInfo) {
$script:gitPathLong = Split-Path (Split-Path $gitInfo.Source -Parent) -Parent
$a = New-Object -ComObject Scripting.FileSystemObject
$f = $a.GetFolder($script:gitPathLong)
$script:gitPath = $f.ShortPath
$script:bashPath = $(Join-Path $script:gitPath "bin\bash.exe")
$script:bashPath = Resolve-Path $script:bashPath
} else {
Write-Error "Failed to register git key bindings - git executable not found"
return
}
}
if (Get-Command Set-PSReadLineKeyHandler -ErrorAction SilentlyContinue) {
@('ctrl+g,ctrl+f','Select Git Files', {Invoke-PsFzfGitFiles}), `
@('ctrl+g,ctrl+s','Select Git Hashes', {Invoke-PsFzfGitHashes}), `
@('ctrl+g,ctrl+b','Select Git Branches', {Invoke-PsFzfGitBranches}) | ForEach-Object {
$script:GitKeyHandlers += $_[0]
Set-PSReadLineKeyHandler -Chord $_[0] -Description $_[1] -ScriptBlock $_[2]
}
} else {
Write-Error "Failed to register git key bindings - PSReadLine module not loaded"
return
}
}
}
function RemoveGitKeyBindings()
{
$script:GitKeyHandlers | ForEach-Object {
Remove-PSReadLineKeyHandler -Chord $_
}
}
function IsInGitRepo()
{
git rev-parse HEAD 2>&1 | Out-Null
return $?
}
function Get-ColorAlways()
{
if ($RunningInWindowsTerminal) {
' --color=always'
} else {
''
}
}
function Get-HeaderStrings() {
if ($RunningInWindowsTerminal) {
$header = "`n`e[7mCTRL+A`e[0m Select All`t`e[7mCTRL+D`e[0m Deselect All`t`e[7mCTRL+T`e[0m Toggle All"
} else {
$header = "`nCTRL+A-Select All`tCTRL+D-Deselect All`tCTRL+T-Toggle All"
}
$keyBinds = 'ctrl-a:select-all,ctrl-d:deselect-all,ctrl-t:toggle-all'
return $Header, $keyBinds
}
function Invoke-PsFzfGitFiles() {
if (-not (IsInGitRepo)) {
return
}
$previewCmd = "${script:bashPath} \""" + $(Join-Path $PsScriptRoot 'helpers/PsFzfGitFiles-Preview.sh') + "\"" {-1}" + $(Get-ColorAlways) + " \""$pwd\"""
$result = @()
$headerStrings = Get-HeaderStrings
git status --short | `
Invoke-Fzf -Multi -Ansi `
-Preview "$previewCmd" -Header $headerStrings[0] -Bind $headerStrings[1] | foreach-object {
$result += $_.Substring('?? '.Length)
}
InvokePromptHack
if ($result.Length -gt 0) {
$result = $result -join " "
[Microsoft.PowerShell.PSConsoleReadLine]::Insert($result)
}
}
function Invoke-PsFzfGitHashes() {
if (-not (IsInGitRepo)) {
return
}
$previewCmd = "${script:bashPath} \""" + $(Join-Path $PsScriptRoot 'helpers/PsFzfGitHashes-Preview.sh') + "\"" {}" + $(Get-ColorAlways) + " \""$pwd\"""
$result = @()
& git log --date=short --format="%C(green)%C(bold)%cd %C(auto)%h%d %s (%an)" $(Get-ColorAlways).Trim() | `
Invoke-Fzf -Ansi -NoSort -Multi -Bind ctrl-s:toggle-sort `
-Header 'Press CTRL-S to toggle sort' `
-Preview "$previewCmd" | ForEach-Object {
if ($_ -match '\d\d-\d\d-\d\d\s+([a-f0-9]+)\s+') {
$result += $Matches.1
}
}
InvokePromptHack
if ($result.Length -gt 0) {
$result = $result -join " "
[Microsoft.PowerShell.PSConsoleReadLine]::Insert($result)
}
}
function Invoke-PsFzfGitBranches() {
if (-not (IsInGitRepo)) {
return
}
$previewCmd = "${script:bashPath} \""" + $(Join-Path $PsScriptRoot 'helpers/PsFzfGitBranches-Preview.sh') + "\"" {}" + $(Get-ColorAlways) + " \""$pwd\"""
$result = @()
git branch -a | & "${script:gitPathLong}\usr\bin\grep.exe" -v '/HEAD\s' |
ForEach-Object { $_.Substring('* '.Length) } | Sort-Object | `
Invoke-Fzf -Ansi -Multi -PreviewWindow "right:70%" -Preview "$previewCmd" | ForEach-Object {
$result += $_
}
[Microsoft.PowerShell.PSConsoleReadLine]::InvokePrompt()
if ($result.Length -gt 0) {
$result = $result -join " "
[Microsoft.PowerShell.PSConsoleReadLine]::Insert($result)
}
}
# gb() {
# is_in_git_repo || return
# git branch -a --color=always | grep -v '/HEAD\s' | sort |
# fzf-down --ansi --multi --tac --preview-window right:70% \
# --preview 'git log --oneline --graph --date=short --color=always --pretty="format:%C(auto)%cd %h%d %s" $(sed s/^..// <<< {} | cut -d" " -f1) | head -'$LINES |
# sed 's/^..//' | cut -d' ' -f1 |
# sed 's#^remotes/##'
# }