1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools: remove vnames.v for now

This commit is contained in:
Alexander Medvednikov
2020-04-04 16:39:08 +02:00
parent e600feda98
commit 33b03449d5
3 changed files with 9 additions and 5 deletions

View File

@@ -88,7 +88,7 @@ pub struct FlagParser {
pub const (
// used for formating usage message
SPACE = ' '
space = ' '
UNDERLINE = '-----------------------------------------------'
MAX_ARGS_NUMBER = 4048
)
@@ -447,10 +447,10 @@ pub fn (fs FlagParser) usage() string {
}
}
option_names := ' ' + onames.join(', ')
space := if option_names.len > SPACE.len-2 {
'\n${SPACE}'
space := if option_names.len > space.len-2 {
'\n${space}'
} else {
SPACE[option_names.len..]
space[option_names.len..]
}
use += '${option_names}${space}${f.usage}\n'
}