Skip to content

Commit 5b75f77

Browse files
committed
delete default completion sub command
1 parent 45caad9 commit 5b75f77

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

cmd/internal/base/base.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ type Command struct {
5656
// Llcppg command
5757
var Llcppg = &Command{
5858
UsageLine: "llcppgx",
59-
Short: `llcppgx aims to be a tool for automatically generating LLGo bindings for C/C++ libraries,
60-
enhancing the experience of integrating LLGo with C!`,
59+
Short: `llcppgx aims to be a tool for automatically generating LLGo bindings for C/C++ libraries.`,
6160
// Commands initialized in package main
6261
}
6362

cmd/llcppgx/completion_cmd.gox

Whitespace-only changes.

cmd/llcppgx/genpkg_cmd.gox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import (
22
self "github.com/goplus/llcppg/cmd/internal/genpkg"
33
)
44

5-
use "genpkg"
5+
use "genpkg [flags]"
66

77
short "generate a go package by signature information of symbols"
88

cmd/llcppgx/gensym_cmd.gox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import (
22
self "github.com/goplus/llcppg/cmd/internal/gensym"
33
)
44

5-
use "gensym"
5+
use "gensym [flags]"
66

77
short "generate symbol table for a C/C++ library"
88

cmd/llcppgx/init_cmd.gox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import (
22
self "github.com/goplus/llcppg/cmd/internal/gencfg"
33
)
44

5-
use "init"
5+
use "init [flags] [cpackage]"
66

77
short "init llcppg.cfg config file"
88

0 commit comments

Comments
 (0)