├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .release-it.cjs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── jiaba-wasm │ └── jieba_rs_wasm_bg.wasm.zip ├── esbuild.config.mjs ├── manifest-beta.json ├── manifest.json ├── package.json ├── pnpm-lock.yaml ├── scripts ├── ob-bumper.mjs ├── ob.esbuild.mjs └── zip.mjs ├── src ├── chsp-main.ts ├── chsp-vim.js ├── cm6 │ ├── chs-extension.ts │ ├── dbl-click │ │ ├── from-src.ts │ │ └── index.ts │ ├── get-seg.ts │ ├── index.ts │ └── patch-keymap.ts ├── install-guide.ts ├── jieba.ts ├── obsidian-ex.d.ts ├── settings.ts ├── utils.ts ├── vim-utils.js └── vim.js ├── tsconfig.json └── versions.json /.eslintignore: -------------------------------------------------------------------------------- 1 | vim.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/.gitignore -------------------------------------------------------------------------------- /.release-it.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/.release-it.cjs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/README.md -------------------------------------------------------------------------------- /assets/jiaba-wasm/jieba_rs_wasm_bg.wasm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/assets/jiaba-wasm/jieba_rs_wasm_bg.wasm.zip -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/manifest-beta.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/ob-bumper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/scripts/ob-bumper.mjs -------------------------------------------------------------------------------- /scripts/ob.esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/scripts/ob.esbuild.mjs -------------------------------------------------------------------------------- /scripts/zip.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/scripts/zip.mjs -------------------------------------------------------------------------------- /src/chsp-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/chsp-main.ts -------------------------------------------------------------------------------- /src/chsp-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/chsp-vim.js -------------------------------------------------------------------------------- /src/cm6/chs-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/cm6/chs-extension.ts -------------------------------------------------------------------------------- /src/cm6/dbl-click/from-src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/cm6/dbl-click/from-src.ts -------------------------------------------------------------------------------- /src/cm6/dbl-click/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/cm6/dbl-click/index.ts -------------------------------------------------------------------------------- /src/cm6/get-seg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/cm6/get-seg.ts -------------------------------------------------------------------------------- /src/cm6/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/cm6/index.ts -------------------------------------------------------------------------------- /src/cm6/patch-keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/cm6/patch-keymap.ts -------------------------------------------------------------------------------- /src/install-guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/install-guide.ts -------------------------------------------------------------------------------- /src/jieba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/jieba.ts -------------------------------------------------------------------------------- /src/obsidian-ex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/obsidian-ex.d.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/vim-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/vim-utils.js -------------------------------------------------------------------------------- /src/vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/src/vim.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenlx/cm-chs-patch/HEAD/versions.json --------------------------------------------------------------------------------