mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tests: add v test-all
, move v test-fixed
to v test-compiler-full
This commit is contained in:
@ -53,8 +53,7 @@ const (
|
||||
'bin2v',
|
||||
'test',
|
||||
'test-fmt',
|
||||
'test-compiler',
|
||||
'test-fixed',
|
||||
'test-compiler-full',
|
||||
'test-cleancode',
|
||||
'repl',
|
||||
'complete',
|
||||
@ -283,7 +282,7 @@ compdef _v v
|
||||
mut lines := []string{}
|
||||
list := auto_complete_request(sub_args[1..])
|
||||
for entry in list {
|
||||
lines << "compadd -U -S \"\" -- '$entry';"
|
||||
lines << 'compadd -U -S' + '""' + ' -- ' + "'$entry';"
|
||||
}
|
||||
println(lines.join('\n'))
|
||||
}
|
||||
|
Reference in New Issue
Block a user