{"id":17947586,"url":"https://github.com/andreyrusyaev/dotnet-kilo","last_synced_at":"2025-06-25T05:08:09.786Z","repository":{"id":258786984,"uuid":"875226825","full_name":"AndreyRusyaev/dotnet-kilo","owner":"AndreyRusyaev","description":"C#/.NET crossplatform port of antirez kilo editor. VT100 terminal text-editor with highlighting and incremental search.","archived":false,"fork":false,"pushed_at":"2024-12-12T15:27:57.000Z","size":105,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-31T20:49:06.286Z","etag":null,"topics":["csharp","dotnet","kilo","syntax-highlighting","terminal","text-editor","vt100","xterm"],"latest_commit_sha":null,"homepage":"","language":"C#","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/AndreyRusyaev.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}},"created_at":"2024-10-19T12:29:26.000Z","updated_at":"2025-05-12T04:22:47.000Z","dependencies_parsed_at":"2024-10-25T11:46:29.917Z","dependency_job_id":"4988dc7f-46db-46e4-bcc4-842666325487","html_url":"https://github.com/AndreyRusyaev/dotnet-kilo","commit_stats":null,"previous_names":["andreyrusyaev/dotnet-kilo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndreyRusyaev/dotnet-kilo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreyRusyaev%2Fdotnet-kilo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreyRusyaev%2Fdotnet-kilo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreyRusyaev%2Fdotnet-kilo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreyRusyaev%2Fdotnet-kilo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndreyRusyaev","download_url":"https://codeload.github.com/AndreyRusyaev/dotnet-kilo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreyRusyaev%2Fdotnet-kilo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261808062,"owners_count":23212692,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["csharp","dotnet","kilo","syntax-highlighting","terminal","text-editor","vt100","xterm"],"created_at":"2024-10-29T08:05:51.770Z","updated_at":"2025-06-25T05:08:09.760Z","avatar_url":"https://github.com/AndreyRusyaev.png","language":"C#","readme":".Net/C# port of awesome antirez kilo text editor https://github.com/antirez/kilo. \nBased on another awesome implementation described in [Build Your Own Text Editor](https://viewsourcecode.org/snaptoken/kilo/).\nWorks in Linux, MacOS and Windows terminals (sh, bash, zsh, cmd, powershell, etc.).\n\n## Screens\n\n![image](https://github.com/user-attachments/assets/4cc6457d-deca-49e0-ae19-64dccc5663cc)\n\n## Prerequisites\n\n* .NET 8.0 or later\n``` shell\ndotnet --version\n# Expected output: 8.0.X\n```\n\n\u003cdetails\u003e\n  \u003csummary\u003eHOWTO: Install .NET 8 on Windows, Linux, and macOS\u003c/summary\u003e\n  \n### Windows\n``` shell\n# run in elevated shell\nwinget install Microsoft.DotNet.SDK.8\n```\n\n### Ubuntu\n``` shell\n# Register Microsoft packages feed (https://learn.microsoft.com/en-us/linux/packages)\nwget https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb\nsudo dpkg -i packages-microsoft-prod.deb\nrm packages-microsoft-prod.deb\n\n# installation\nsudo apt update \u0026\u0026 sudo apt-get install -y dotnet-sdk-8.0\n```\n\n### MacOS\n``` shell\nbrew install dotnet\n```\n\n### See also\n[Install .NET on Windows, Linux, and macOS](https://learn.microsoft.com/en-us/dotnet/core/install/)\n\n\u003c/details\u003e\n\n## Usage\n\n``` bash\ngit clone https://github.com/AndreyRusyaev/dotnet-kilo/\ncd dotnet-kilo\ndotnet run\n```\n\n## Changes\n\n* Basic unicode support\n* Added support for Windows terminals (CMD, Powershell, WSL).\n* Alternate screen mode support (XTERM 1049 mode)\n* Abstracted VT100 sequences (see VT100.cs)\n\n## List of remarkable kilo ports/implementations\n\n* [kilo-tutorial (C)](https://github.com/snaptoken/kilo-src/) via [Build Your Own Text Editor](https://viewsourcecode.org/snaptoken/kilo/)\n* [kiro-editor (Rust)](https://github.com/rhysd/kiro-editor)\n* [kibi (Rust)](https://github.com/ilai-deutel/kibi)\n* [hecto (Rust)](https://github.com/pflenker/hecto-tutorial) via [hecto: Build Your Own Text Editor in Rust](https://www.flenker.blog/hecto/)\n* [gram (Zig)](https://github.com/eightfilms/gram)\n* [kilo.zig (Zig)](https://github.com/h4rr9/kilo.zig)\n* [kilo-in-go (Go)](https://github.com/bediger4000/kilo-in-go)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreyrusyaev%2Fdotnet-kilo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreyrusyaev%2Fdotnet-kilo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreyrusyaev%2Fdotnet-kilo/lists"}