Skip to content

Commit

Permalink
fixed exec action
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Bensmann committed Jul 24, 2022
1 parent 1230a6e commit d36a68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ func parseBinding(rawBinding string) (binding Binding, err error) {
if len(args) == 0 {
return nil, fmt.Errorf("action requires at least one argument")
}
binding = &ExecBinding{Command: argString}
binding = ExecBinding{Command: argString}
default:
combo, err := parseKeyCombo(rawBinding)
if err != nil {
Expand Down

0 comments on commit d36a68e

Please sign in to comment.