mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
tools: fix vcomplete for zsh (#18950)
This commit is contained in:
parent
40dc80079d
commit
15fdfd7bcf
1 changed files with 10 additions and 2 deletions
|
@ -342,11 +342,19 @@ fn auto_complete(args []string) {
|
|||
exit(0)
|
||||
}
|
||||
mut lines := []string{}
|
||||
mut dirs := []string{}
|
||||
mut files := []string{}
|
||||
list := auto_complete_request(sub_args[1..])
|
||||
for entry in list {
|
||||
lines << 'compadd -U -S' + '""' + ' -- ' + "'${entry}';"
|
||||
match true {
|
||||
os.is_dir(entry) { dirs << entry }
|
||||
os.is_file(entry) { files << entry }
|
||||
else { lines << entry }
|
||||
}
|
||||
}
|
||||
println(lines.join('\n'))
|
||||
println('compadd -q -- ${lines.join(' ')}')
|
||||
println('compadd -J "dirs" -X "directory" -d -- ${dirs.join(' ')}')
|
||||
println('compadd -J "files" -X "file" -f -- ${files.join(' ')}')
|
||||
}
|
||||
'-h', '--help' {
|
||||
println(help_text)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue