{"id":51339023,"url":"https://github.com/stremtec/xei","last_synced_at":"2026-07-02T06:00:47.628Z","repository":{"id":368582979,"uuid":"1285836964","full_name":"stremtec/xei","owner":"stremtec","description":"xei (晴) — a modern Vim-like terminal editor in Rust.","archived":false,"fork":false,"pushed_at":"2026-07-01T09:12:29.000Z","size":265,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-07-01T09:22:38.846Z","etag":null,"topics":["cli","editor","rust","terminal","text-editor","tui","vim"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stremtec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-07-01T07:32:16.000Z","updated_at":"2026-07-01T09:13:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/stremtec/xei","commit_stats":null,"previous_names":["stremtec/xei"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/stremtec/xei","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stremtec%2Fxei","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stremtec%2Fxei/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stremtec%2Fxei/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stremtec%2Fxei/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stremtec","download_url":"https://codeload.github.com/stremtec/xei/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stremtec%2Fxei/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35034985,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","editor","rust","terminal","text-editor","tui","vim"],"created_at":"2026-07-02T06:00:27.115Z","updated_at":"2026-07-02T06:00:47.617Z","avatar_url":"https://github.com/stremtec.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xei  晴\n\n\u003e A modern Vim-like terminal editor in Rust with LSP, tree-sitter, and IDE features.\n\n![](xei.png)\n\n```bash\nnpm install -g xei-editor       # npm\nbrew install stremtec/xei/xei   # Homebrew\ncargo install xei-editor        # Cargo\n```\n\n**macOS / Linux:**\n```bash\ncurl -fsSL https://raw.githubusercontent.com/stremtec/xei/master/install.sh | bash\n```\n\n**Windows (PowerShell):**\n```powershell\niwr https://raw.githubusercontent.com/stremtec/xei/master/install.ps1 | iex\n```\n\n## Features\n\n- **LSP integration** — auto-starts language servers for 16 languages (rust-analyzer, clangd, pyright, gopls, tsserver...). Inline diagnostics, go-to-definition (`gd`), and completion\n- **Tree-sitter highlighting** — AST-based syntax for Rust, Python, JS/TS, C/C++\n- **Multi-buffer tabs** — `gt`/`gT` to switch, `:e` opens in new tab, `:bd` closes\n- **Vim modal editing** — Normal, Insert, Visual, Visual Line modes\n- **Incremental search** — live results as you type (`/`)\n- **File change detection** — auto-reload on external modification\n- **System clipboard** — `Cmd+C` / `Cmd+V` via pbcopy/pbpaste\n- **Mouse support** — click to move, drag to select, scroll, panel resize\n- **Auto-pairing** — brackets/quotes close automatically, smart indent on Enter\n- **Smart indent** — Enter copies indentation, adds extra for `{`, `[`, `(`, `:`, `=\u003e`, `-\u003e`\n- **Panel system** — file explorer (`Ctrl+F`), built-in PTY terminal (`Ctrl+T`), XLC command bar (`:`)\n- **10 themes** — ocean, monokai, nord, solarized, gruvbox, everforest, sakura, newspaper, mono, mono_dark\n- **CJK support** — Korean, Japanese, Chinese characters render at full width\n\n## LSP\n\nAuto-detected on file open. Status bar shows `LSP: clangd (3)`.\n\n| Command | Action |\n|---|---|\n| `:LspStart \u003ccmd\u003e` | Manually start a language server |\n| `gd` | Go to definition |\n| `Ctrl+A` | Completions (keywords + LSP items) |\n\n## Keybindings\n\n### Normal Mode\n\n| Key | Action |\n|---|---|\n| `h` `j` `k` `l` / `←↓↑→` | Move cursor |\n| `w` `b` | Next / previous word |\n| `0` `$` | Start / end of line |\n| `gg` `G` | Top / bottom of file |\n| `i` `a` `A` `o` `O` | Enter Insert mode |\n| `x` | Delete character |\n| `dd` `dw` | Delete line / word (yanked) |\n| `p` | Paste |\n| `u` | Undo |\n| `v` `V` | Visual / Visual Line |\n| `/` | Incremental search |\n| `n` `N` | Next / previous match |\n| `gt` `tt` `gT` | Next / previous tab |\n| `gd` | Go to definition (LSP) |\n| `:` | XLC command panel |\n\n### Visual Mode\n\n| Key | Action |\n|---|---|\n| `d` | Delete selection |\n| `y` | Yank (copy) |\n| `Cmd+C` | Copy to system clipboard |\n\n### Insert Mode\n\n| Key | Action |\n|---|---|\n| `Ctrl+A` | Trigger autocomplete (LSP + keywords) |\n| `Cmd+V` | Paste from system clipboard |\n\n### Panels\n\n| Key | Action |\n|---|---|\n| `Ctrl+F` | Toggle file explorer |\n| `Ctrl+T` / `F12` | Toggle built-in terminal |\n| `Ctrl+E` | Toggle XLC panel |\n\n## XLC Commands (`:`)\n\n| Command | Action |\n|---|---|\n| `:w` `:save` | Save file |\n| `:e \u003cfile\u003e` | Open file (new tab if already open) |\n| `:q` / `:q!` | Quit / Force quit |\n| `:wq` `:x` | Save and quit |\n| `:bd` | Close current tab |\n| `:mv \u003cdest\u003e` | Move / rename file |\n| `:rm` | Delete file |\n| `:pwd` `:ls` | Directory info |\n| `/pattern` | Incremental search |\n| `:theme \u003cname\u003e` | Switch theme |\n| `:LspStart \u003ccmd\u003e` | Start language server |\n| `:help` | List all commands |\n\n## Themes\n\n`ocean` · `monokai` · `nord` · `solarized` · `gruvbox` · `everforest` · `sakura` · `newspaper` · `mono` · `mono_dark`\n\n```bash\n:theme sakura    # persists to ~/.xei.toml\n```\n\n## Configuration\n\n`~/.xei.toml` (auto-saved on theme change):\n\n```toml\ntheme = \"gruvbox\"\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstremtec%2Fxei","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstremtec%2Fxei","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstremtec%2Fxei/lists"}