Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support for tab-completion of all parameters, long and short #395

Merged
merged 26 commits into from
Feb 6, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2f4af9f
tab completion for branch and log parameters implemented
seamlessintegrations Apr 12, 2015
1ad85e2
tab completion for add and status parameters implemented
seamlessintegrations Apr 12, 2015
021afc4
tab completion for diff and merge parameters implemented
seamlessintegrations Apr 12, 2015
53ddd27
parameter values completion added for add, branch, diff, log, merge, …
seamlessintegrations Apr 12, 2015
3c97e14
added support for short parameters for add, branch, diff, log, merge,…
seamlessintegrations Apr 12, 2015
98b0b9f
added tab completion for commit cmd
seamlessintegrations Apr 12, 2015
8a6a99d
added tab completion for checkout, fetch, pull, push cmds
seamlessintegrations Apr 12, 2015
57c9159
added tab completion for rebase
seamlessintegrations Apr 12, 2015
f990b3b
added tab completion for all other cmds except bisect, svn
seamlessintegrations Apr 15, 2015
f40922a
added tab completion for bisect
seamlessintegrations Feb 2, 2017
df39d27
Merge branch 'master' of https://github.com/dahlbyk/posh-git
seamlessintegrations Feb 2, 2017
c76f1f6
moved file due to new filesystem layout
seamlessintegrations Feb 2, 2017
fc39c00
moved source params expansion statement into posh-git.psm1
seamlessintegrations Feb 2, 2017
4361b1b
replaced aliases with full cmdlet names
seamlessintegrations Feb 2, 2017
bf2bda9
whitespaces / eol / eof fixes
seamlessintegrations Feb 2, 2017
0302fd5
eol at eof added
seamlessintegrations Feb 2, 2017
fe0608e
renamed file for consistency reasons
seamlessintegrations Feb 2, 2017
dffdbd3
renamed file for consistency reasons
seamlessintegrations Feb 2, 2017
8eff9cc
added parameter tab expansion tests
seamlessintegrations Feb 2, 2017
f11d033
corrected test result expectations
seamlessintegrations Feb 2, 2017
a96f23c
renamed file for consistency reasons
seamlessintegrations Feb 3, 2017
302f50e
Clean up PR issues that @dahlbyk raised.
rkeithhill Feb 4, 2017
48a1062
closing braces are on a new line now
seamlessintegrations Feb 4, 2017
51a78d0
command lists are now precomputed
seamlessintegrations Feb 6, 2017
5083dcd
merged both versions
seamlessintegrations Feb 6, 2017
703f328
Merge branch 'rkeithhill-rkeithhill/fix-last-misc-pr-issues'
seamlessintegrations Feb 6, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion src/posh-git.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if ($psv.Major -lt 3 -and !$NoVersionWarn) {
. $PSScriptRoot\GitUtils.ps1
. $PSScriptRoot\GitPrompt.ps1
. $PSScriptRoot\GitTabExpansion.ps1
. $PSScriptRoot\ParamsExpansions.ps1
. $PSScriptRoot\GitParamsExpansion.ps1
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for being a bit pedantic here, but could you make that GitParamTabExpansion.ps1. Thanks.

. $PSScriptRoot\TortoiseGit.ps1

if (!$Env:HOME) { $Env:HOME = "$Env:HOMEDRIVE$Env:HOMEPATH" }
Expand Down