diff options
author | Sergey Smirnykh <sergey.smirnykh@siborgium.xyz> | 2022-07-02 08:45:54 +0700 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-07-02 18:36:40 +0200 |
commit | 12e8217d1fa0f4c4c83eebcc7473ecb8f0c072ba (patch) | |
tree | 701c8bcdcb87009e778b74adb106f7d1e517f7bb /commands/prompt.go | |
parent | 80f90c0d41858ddc80232965ce85c8e560a78fbd (diff) | |
download | aerc-12e8217d1fa0f4c4c83eebcc7473ecb8f0c072ba.tar.gz |
commands: implement prompt completion
This patch implements :prompt completion.
The completion mechanism only provides completions when there is at least
one argument specified (prompt text).
The mechanism is based on other commands' completions and works as follows:
1. Attempts to look up a command by the name specified in args[1].
2.a On success it uses command.Complete.
2.b Otherwise, if total arguments count is lesser or equals than 2
(i.e. no command arguments specified), it attempts to complete
the command's name.
Additional effort is made to preserve prompt text, which often contains
spaces and formatting.
Signed-off-by: Sergey Smirnykh <sergey.smirnykh@siborgium.xyz>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/prompt.go')
-rw-r--r-- | commands/prompt.go | 52 |
1 files changed, 50 insertions, 2 deletions
diff --git a/commands/prompt.go b/commands/prompt.go index 6714eb30..1d2242c2 100644 --- a/commands/prompt.go +++ b/commands/prompt.go @@ -2,8 +2,8 @@ package commands import ( "fmt" - "git.sr.ht/~rjarry/aerc/widgets" + "strings" ) type Prompt struct{} @@ -17,7 +17,55 @@ func (Prompt) Aliases() []string { } func (Prompt) Complete(aerc *widgets.Aerc, args []string) []string { - return nil // TODO: add completions + argc := len(args) + if argc == 0 { + return nil + } + hascommand := argc > 2 + if argc == 1 { + args = append(args, "") + } + + cmd := GlobalCommands.ByName(args[1]) + var cs []string + if cmd != nil { + cs = cmd.Complete(aerc, args[2:]) + hascommand = true + } else { + if hascommand { + return nil + } + cs = GlobalCommands.GetCompletions(aerc, args[1]) + } + if cs == nil { + return nil + } + + var b strings.Builder + // it seems '' quoting is enough + // to keep quoted arguments in one piece + b.WriteRune('\'') + b.WriteString(args[0]) + b.WriteRune('\'') + b.WriteRune(' ') + if hascommand { + b.WriteString(args[1]) + b.WriteRune(' ') + } + + src := b.String() + b.Reset() + + rs := make([]string, 0, len(cs)) + for _, c := range cs { + b.WriteString(src) + b.WriteString(c) + + rs = append(rs, b.String()) + b.Reset() + } + + return rs } func (Prompt) Execute(aerc *widgets.Aerc, args []string) error { |