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

fmt: further fixes for string interpolation and builtin macros

This commit is contained in:
Uwe Krüger
2020-06-18 18:48:23 +02:00
committed by GitHub
parent f526754535
commit 3b6e66db0d
13 changed files with 90 additions and 32 deletions

View File

@@ -140,7 +140,7 @@ fn main() {
fn (foptions &FormatOptions) format_file(file string) {
mut prefs := pref.new_preferences()
prefs.is_fmt = util.is_fmt()
prefs.is_fmt = true
if foptions.is_verbose {
eprintln('vfmt2 running fmt.fmt over file: $file')
}