sai104797614 downloadsType 萬維鋼 and find 万维钢 (and vice versa) in global search. Uses OpenCC to expand queries across Simplified and Traditional Chinese.
Type 萬維鋼 in Obsidian's global search and find files containing 万维钢. And vice versa.
Obsidian's native global search (Cmd+Shift+F / Ctrl+Shift+F) treats Simplified and Traditional Chinese as different strings — searching 萬維鋼 will not surface a note that only contains 万维钢. This plugin closes that gap by rewriting your query using Obsidian's native OR syntax before it hits the search engine.
It also bridges common Taiwan/Mainland term variants like 軟體 ↔ 軟件 ↔ 软件 via OpenCC's s2tw / tw2s mapping.
Both typing into the search box and programmatic search calls are covered. CJK input methods (注音 / 拼音 / 日文 / 한국어) are not disrupted — the plugin pauses rewriting during IME composition so the candidate window keeps working normally.
Cmd+Shift+F / Ctrl+Shift+F) — both user typing and programmatic callsCmd+O) — use lazyloong/obsidian-fuzzy-chinese for that| Input | Matches |
|---|---|
萬維鋼 |
files containing 萬維鋼 or 万维钢 |
万维钢 |
files containing 万维钢 or 萬維鋼 |
軟體 |
files containing 軟體, 軟件, or 软件 (Taiwan variant only) |
path:筆記/ 萬維鋼 |
path: operator passes through; 萬維鋼 expanded |
/萬維鋼/ |
left as-is (you wrote a regex, plugin trusts you) |
MIT |
unchanged (no CJK) |
的 |
unchanged (single CJK char threshold) |
Under the hood, 萬維鋼 becomes (萬維鋼 OR 万维钢) — Obsidian's native OR operator, not a regex blob. Your input box keeps showing what you typed; only the underlying query gets expanded.
Taiwan (default, bridges Taiwan idioms like 軟體↔软件) or Basic (char-level only, fewer false positives).isDesktopOnly).-廢文) are not expanded.Taiwan variant can produce false positives for terms with the same form but different meaning across regions (e.g. 程序 means "program" in Mainland but also "procedure" in Taiwan). If this bothers you, switch to Basic.SearchView.setQuery prototype + SearchComponent.changeCallback per-instance). An Obsidian upgrade that renames these may temporarily break the plugin until updated.main.js and manifest.json from Releases.<your-vault>/.obsidian/plugins/cjk-cross-search/.git clone https://github.com/sai1047976/obsidian-cjk-cross-search
cd obsidian-cjk-cross-search
npm install
npm run build
The build emits main.js in the repo root. Drop that plus manifest.json into your vault's plugin folder.
MIT. See LICENSE.