summaryrefslogtreecommitdiffstats
path: root/src/utils.rs
diff options
context:
space:
mode:
authorMilo <50248166+Milo123459@users.noreply.github.com>2021-05-03 20:50:29 +0100
committerGitHub <noreply@github.com>2021-05-03 21:50:29 +0200
commit48f913ec2309c8fa1f3c012e5aa33f7df0f6e0ad (patch)
treed0a54a5cd27b2f43685812b967cf62b6e407f4a6 /src/utils.rs
parentdead06ba14e30803f0027be8d46cc1f395d5d87e (diff)
feat(vlang): create module (#2577)
* Add V module * Format * Fix tests * fix typo * Update src/configs/v.rs Co-authored-by: Dario Vladović <d.vladimyr@gmail.com> * Update docs/config/README.md Co-authored-by: Dario Vladović <d.vladimyr@gmail.com> * Update docs/config/README.md Co-authored-by: Dario Vladović <d.vladimyr@gmail.com> * Update docs/config/README.md Co-authored-by: Dario Vladović <d.vladimyr@gmail.com> * Use blue bold * v -> vlang * change docs * More vlang fixes * add package support for v * Update docs/config/README.md Co-authored-by: Dario Vladović <d.vladimyr@gmail.com> * use regex * Update src/configs/mod.rs Co-authored-by: David Knaack <davidkna@users.noreply.github.com> * apply patch * fix Co-authored-by: Dario Vladović <d.vladimyr@gmail.com> Co-authored-by: David Knaack <davidkna@users.noreply.github.com>
Diffstat (limited to 'src/utils.rs')
-rw-r--r--src/utils.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils.rs b/src/utils.rs
index 32fd342f5..7ef829a31 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -188,6 +188,10 @@ Target: x86_64-apple-darwin19.4.0\n",
stdout: String::from("Vagrant 2.2.10\n"),
stderr: String::default(),
}),
+ "v version" => Some(CommandOutput {
+ stdout: String::from("V 0.2 30c0659"),
+ stderr: String::default()
+ }),
"zig version" => Some(CommandOutput {
stdout: String::from("0.6.0\n"),
stderr: String::default(),