├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── AGENTS.md ├── AppDelegate.swift ├── AppIcon.icns ├── CLAUDE.md ├── Info.plist ├── InputMethodManager.swift ├── LICENSE ├── LaunchManager.swift ├── README.md ├── README_EN.md ├── README_JA.md ├── README_KO.md ├── StatusBarManager.swift ├── UpdateManager.swift ├── UserPreferences.swift ├── ai_chat_history.md ├── entitlements.plist ├── inputsource.swift ├── macvimswitch.rb ├── main.swift └── public └── tip-qr-code.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/AGENTS.md -------------------------------------------------------------------------------- /AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/AppDelegate.swift -------------------------------------------------------------------------------- /AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/AppIcon.icns -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/Info.plist -------------------------------------------------------------------------------- /InputMethodManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/InputMethodManager.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/LICENSE -------------------------------------------------------------------------------- /LaunchManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/LaunchManager.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/README_EN.md -------------------------------------------------------------------------------- /README_JA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/README_JA.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/README_KO.md -------------------------------------------------------------------------------- /StatusBarManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/StatusBarManager.swift -------------------------------------------------------------------------------- /UpdateManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/UpdateManager.swift -------------------------------------------------------------------------------- /UserPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/UserPreferences.swift -------------------------------------------------------------------------------- /ai_chat_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/ai_chat_history.md -------------------------------------------------------------------------------- /entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/entitlements.plist -------------------------------------------------------------------------------- /inputsource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/inputsource.swift -------------------------------------------------------------------------------- /macvimswitch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/macvimswitch.rb -------------------------------------------------------------------------------- /main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/main.swift -------------------------------------------------------------------------------- /public/tip-qr-code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jackiexiao/macvimswitch/HEAD/public/tip-qr-code.jpg --------------------------------------------------------------------------------