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

readline: give the possibility to ignore the empty line in the history (#13452)

This commit is contained in:
Vincenzo Palazzo
2022-02-13 23:12:25 +01:00
committed by GitHub
parent 57e850e932
commit bf11df40e2
3 changed files with 12 additions and 4 deletions

View File

@@ -42,7 +42,9 @@ enum FnType {
fn new_repl() Repl {
return Repl{
readline: readline.Readline{}
readline: readline.Readline{
skip_empty: true
}
modules: ['os', 'time', 'math']
vstartup_lines: os.read_file(vstartup) or { '' }.trim_right('\n\r').split_into_lines()
// Test file used to check if a function as a void return or a