From cd96f980ccaca8372f97e9789b1feab5dbad3c35 Mon Sep 17 00:00:00 2001 From: Larpon Date: Wed, 8 Dec 2021 21:27:07 +0100 Subject: [PATCH] v complete: add recent additions to cmd/tools, sort list (#12762) --- cmd/tools/vcomplete.v | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/cmd/tools/vcomplete.v b/cmd/tools/vcomplete.v index e0b4cf432a..37f84caf35 100644 --- a/cmd/tools/vcomplete.v +++ b/cmd/tools/vcomplete.v @@ -50,26 +50,36 @@ const ( const ( auto_complete_commands = [ // simple_cmd - 'fmt', - 'up', + 'ast', + 'doc', 'vet', + // tools in one .v file + 'bin2v', + 'bug', + 'build-examples', + 'build-tools', + 'build-vbinaries', + 'check-md', + 'complete', + 'compress', + 'create', + 'doctor', + 'fmt', + 'repl', 'self', - 'tracev', + 'setup-freetype', 'shader', 'symlink', - 'bin2v', - 'test', - 'test-fmt', - 'test-self', + 'test-all', 'test-cleancode', - 'repl', - 'complete', - 'build-tools', - 'build-examples', - 'build-vbinaries', - 'setup-freetype', - 'doc', - 'doctor', + 'test-fmt', + 'test-parser', + 'test-self', + 'test', + 'tracev', + 'up', + 'watch', + 'wipe-cache', // commands 'help', 'new',