diff options
Diffstat (limited to 'commands/send-keys.go')
-rw-r--r-- | commands/send-keys.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/send-keys.go b/commands/send-keys.go index bb872a33..a7b6dee9 100644 --- a/commands/send-keys.go +++ b/commands/send-keys.go @@ -12,7 +12,11 @@ type SendKeys struct { } func init() { - register(SendKeys{}) + Register(SendKeys{}) +} + +func (SendKeys) Context() CommandContext { + return GLOBAL } func (SendKeys) Aliases() []string { |