mirror of
https://github.com/aljazceru/opencode.git
synced 2026-01-01 15:14:20 +01:00
fix: command being passed as arg when no args present (#2553)
This commit is contained in:
@@ -507,7 +507,10 @@ func (m *editorComponent) Submit() (tea.Model, tea.Cmd) {
|
||||
commandName := strings.Split(expandedValue, " ")[0]
|
||||
command := m.app.Commands[commands.CommandName(commandName)]
|
||||
if command.Custom {
|
||||
args := strings.TrimPrefix(expandedValue, command.PrimaryTrigger()+" ")
|
||||
args := ""
|
||||
if strings.HasPrefix(expandedValue, command.PrimaryTrigger()+" ") {
|
||||
args = strings.TrimPrefix(expandedValue, command.PrimaryTrigger()+" ")
|
||||
}
|
||||
cmds = append(
|
||||
cmds,
|
||||
util.CmdHandler(app.SendCommand{Command: string(command.Name), Args: args}),
|
||||
|
||||
Reference in New Issue
Block a user