Skip to content

Commit

Permalink
Add support for non-exe on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
buzzy authored Nov 10, 2024
1 parent a00b4b6 commit 3a01a83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autocomplete.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,8 @@ func autoCompleteGitbash(home string, fname string) string {

_, err = f.WriteString("complete -o nospace -C " + convertPath(fname) + " scalr.exe\n")
checkErr(err)
_, err = f.WriteString("complete -o nospace -C " + convertPath(fname) + " scalr\n")
checkErr(err)

return theConfig
}
Expand Down

0 comments on commit 3a01a83

Please sign in to comment.