Skip to content

Commit

Permalink
filing windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
lmorg committed Sep 3, 2023
1 parent 1756efd commit 73770d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell/autocomplete/execs_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ func matchExes(s string, exes map[string]bool) (items []string) {
lc := strings.ToLower(s)
if strings.HasPrefix(strings.ToLower(name), lc) {
switch {
case isSpecialBuiltin(name):
items = append(items, name[len(s):])
//case isSpecialBuiltin(name):
// items = append(items, name[len(s):])
case consts.NamedPipeProcName == name:
// do nothing
default:
Expand Down

0 comments on commit 73770d3

Please sign in to comment.