πββοΈ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations | |
import re | |
from typing import Any, Never | |
class JSONParseError(Exception): | |
pass | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local obj = {} | |
obj.__index = obj | |
-- Metadata | |
obj.name = "HammerspoonSwitchIME" | |
obj.version = "0.1" | |
obj.author = "Qiangning Hong" | |
obj.license = "MIT" | |
local ENGLISH_ID = "com.apple.keylayout.US" |
OlderNewer