lib/fusuma/plugin/detectors/keypress_detector.rb in fusuma-plugin-keypress-0.8.0 vs lib/fusuma/plugin/detectors/keypress_detector.rb in fusuma-plugin-keypress-0.9.0
- old
+ new
@@ -68,11 +68,11 @@
# @param code [String]
# @return [Config::Index]
def create_index(codes:)
Config::Index.new(
[
- Config::Index::Key.new("keypress", skippable: true),
- Config::Index::Key.new(codes.join("+"), skippable: true)
+ Config::Index::Key.new("keypress", skippable: false),
+ Config::Index::Key.new(codes.join("+"), skippable: false)
]
)
end
end
end