Configure upcased key as combination with shift mod

This commit is contained in:
Thibault Jouan
2015-04-15 01:09:18 +00:00
parent 56197c85f8
commit 9c9aa1dabb
7 changed files with 63 additions and 9 deletions

View File

@@ -80,6 +80,12 @@ module Uh
runner.register_event_hooks
expect(runner.events[:key, :f]).not_to be_empty
end
it 'registers combined key bindings event hooks' do
env.keybinds[[:f, :shift]] = -> { }
runner.register_event_hooks
expect(runner.events[:key, :f, :shift]).not_to be_empty
end
end
describe '#connect_manager' do