Merge pull request #656 from peco/fix-global-action-registry

Fix global action registry
This commit is contained in:
lestrrat 2026-02-17 14:53:25 +09:00 committed by GitHub
commit 6bce9be413
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,7 +125,6 @@ func (km Keymap) resolveActionName(name string, depth int) (Action, error) {
actions = append(actions, child)
}
v = makeCombinedAction(actions...)
nameToActions[name] = v
return v, nil
}