From 330ee8599f277f1a5be78f10ad53a2d7f2f989fc Mon Sep 17 00:00:00 2001 From: ge Date: Thu, 3 Jul 2025 21:30:14 +0300 Subject: [PATCH] rename to vd --- .gitignore | 2 +- README.md | 4 ++-- v.mod | 2 +- vdocs.v => vd.v | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename vdocs.v => vd.v (97%) diff --git a/.gitignore b/.gitignore index 4d9e735..ec8484f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ # Binaries for programs and plugins main -vdocserve +vd *.exe *.exe~ *.so diff --git a/README.md b/README.md index cffed5f..59cf27b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# V Documentation Server +# V documentation server Synopsis: ``` generate and serve HTML documentation for V module -usage: vdocs [-l addr:port] [] +usage: vd [-l addr:port] [] options: -help print this help message and exit diff --git a/v.mod b/v.mod index adc1472..84bf268 100644 --- a/v.mod +++ b/v.mod @@ -1,5 +1,5 @@ Module { - name: 'vdocs' + name: 'vd' description: 'Generate and serve V module documentation' version: '0.1.0' license: 'Unlicense' diff --git a/vdocs.v b/vd.v similarity index 97% rename from vdocs.v rename to vd.v index 89ab636..40bc4e0 100644 --- a/vdocs.v +++ b/vd.v @@ -30,7 +30,7 @@ fn main() { if flags.help { println('generate and serve HTML documentation for V module') println('') - println('usage: vdocs [-l addr:port] []') + println('usage: vd [-l addr:port] []') println('') println('options:') println(' -help print this help message and exit')