mirror of https://github.com/Hilbis/Hilbish
fix: dont complete binaries in path if complete req starts with file prefix
parent
88fd6f01b9
commit
59963add14
5
rl.go
5
rl.go
|
@ -60,6 +60,9 @@ func newLineReader(prompt string) *lineReader {
|
|||
ctx = aliases.Resolve(ctx)
|
||||
|
||||
if len(fields) == 1 {
|
||||
prefixes := []string{"./", "../", "/", "~/"}
|
||||
for _, prefix := range prefixes {
|
||||
if strings.HasPrefix(query, prefix) {
|
||||
fileCompletions := fileComplete(query, ctx, fields)
|
||||
if len(fileCompletions) != 0 {
|
||||
for _, f := range fileCompletions {
|
||||
|
@ -70,8 +73,10 @@ func newLineReader(prompt string) *lineReader {
|
|||
completions = append(completions, f)
|
||||
}
|
||||
compGroup[0].Suggestions = completions
|
||||
}
|
||||
return "", compGroup
|
||||
}
|
||||
}
|
||||
|
||||
// filter out executables, but in path
|
||||
for _, dir := range filepath.SplitList(os.Getenv("PATH")) {
|
||||
|
|
Loading…
Reference in New Issue