├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── IMEAndCursor-Helper.ahk ├── README.md ├── images └── icon.png ├── package.json ├── src ├── extension.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── switcher └── im-select.exe └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /IMEAndCursor-Helper.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/IMEAndCursor-Helper.ahk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /switcher/im-select.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/switcher/im-select.exe -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beishanyufu/ime-and-cursor/HEAD/tsconfig.json --------------------------------------------------------------------------------