Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
# ################################################################ # | |
# THE FOLLOWING IS AN EXPLANATION OF THE GRAMMAR THAT SKHD PARSES. # | |
# FOR SIMPLE EXAMPLE MAPPINGS LOOK FURTHER DOWN THIS FILE.. # | |
# ################################################################ # | |
# A list of all built-in modifier and literal keywords can | |
# be found at https://github.com/koekeishiya/skhd/issues/1 | |
# | |
# A hotkey is written according to the following rules: | |
# |
{ | |
"swagger": "2.0", | |
"info": { | |
"title": "reverb", | |
"description": "reverb", | |
"termsOfService": "https://reverb.com/page/terms", | |
"contact": { | |
"name": "Reverb API", | |
"email": "[email protected]", | |
"url": "https://dev.reverb.com" |
require 'minitest/autorun' | |
require_relative 'anagram' | |
class AnagramTest < MiniTest::Unit::TestCase | |
def test_no_matches | |
detector = Anagram.new('diaper') | |
assert_equal [], detector.match(%w(hello world zombies pants)) | |
end |