Sanity checks
What CLI tool does this relate to?
git
Which statement makes the most sense?
There is a bug with this completion spec
Issue Details
- When I type
git commit and request completions, I expect to see origin/branch_name for example.
- This code prevents that from happening:
|
|
|
if (insertWithoutRemotes && name.startsWith("remotes/")) { |
|
name = name.slice(name.indexOf("/", 8) + 1); |
|
description = "Remote branch"; |
|
} |
These changes allow that to show up in the completions list:
https://github.com/microsoft/vscode/pull/241675/files
I'm wondering if you are open to this contribution.
Sanity checks
git checkoutis missing options ingitcompletion spec). If your issue is more general, please create your issue here: withfig/figWhat CLI tool does this relate to?
git
Which statement makes the most sense?
There is a bug with this completion spec
Issue Details
git commitand request completions, I expect to seeorigin/branch_namefor example.autocomplete/src/git.ts
Lines 92 to 96 in 7828841
These changes allow that to show up in the completions list:
https://github.com/microsoft/vscode/pull/241675/files
I'm wondering if you are open to this contribution.