{"id":19053276,"url":"https://github.com/jotavare/c-text-editor","last_synced_at":"2025-11-12T06:02:59.217Z","repository":{"id":239784064,"uuid":"800533011","full_name":"jotavare/c-text-editor","owner":"jotavare","description":"A text editor built from scratch in C, using less than 1000 lines of code.","archived":false,"fork":false,"pushed_at":"2024-06-27T00:05:12.000Z","size":74,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T01:16:02.381Z","etag":null,"topics":["c","input-output","search","syntax-highlighting","text-editor","text-viewer"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jotavare.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-05-14T14:12:08.000Z","updated_at":"2025-01-30T20:50:39.000Z","dependencies_parsed_at":"2024-11-08T23:30:03.425Z","dependency_job_id":"282662b0-054e-45f6-9cd0-4af3b17d553e","html_url":"https://github.com/jotavare/c-text-editor","commit_stats":null,"previous_names":["jotavare/text_editor","jotavare/text-editor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jotavare/c-text-editor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jotavare%2Fc-text-editor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jotavare%2Fc-text-editor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jotavare%2Fc-text-editor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jotavare%2Fc-text-editor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jotavare","download_url":"https://codeload.github.com/jotavare/c-text-editor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jotavare%2Fc-text-editor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283983990,"owners_count":26927577,"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","status":"online","status_checked_at":"2025-11-12T02:00:06.336Z","response_time":59,"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":["c","input-output","search","syntax-highlighting","text-editor","text-viewer"],"created_at":"2024-11-08T23:29:56.282Z","updated_at":"2025-11-12T06:02:59.186Z","avatar_url":"https://github.com/jotavare.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"## ABOUT\r\n\r\nThis text editor (vim wannabe) was built in `C` with less than **1000 LOC**, it doesn't need external libraries and utilizes standard **VT100** escape sequences. The guide I followed, along with future implementation ideas, are available below.\r\n\r\n## REQUIREMENTS\r\n\r\n- Linux environment;\r\n- GNU Compiler collection `sudo apt-get install gcc make`;\r\n\r\n## REFERENCES\r\n\r\n| Link                                                                                                     | Source    |\r\n| :------------------------------------------------------------------------------------------------------- | :-------- |\r\n| [Kilo Original](https://github.com/antirez/kilo)                                                         | GitHub    |\r\n| [Kilo Guide](https://viewsourcecode.org/snaptoken/kilo/index.html)                                       | Website   |\r\n| [Vim](https://www.vim.org/)                                                                              | Website   |\r\n| [C99](https://en.wikipedia.org/wiki/C99)                                                                 | Wikipedia |\r\n| [ANSI C](https://en.wikipedia.org/wiki/ANSI_C)                                                           | Wikipedia |\r\n| [ANSI Escape Code](https://en.wikipedia.org/wiki/ANSI_escape_code)                                       | Wikipedia |\r\n| [Bit Field](https://en.wikipedia.org/wiki/Bit_field)                                                     | Wikipedia |\r\n| [ASCII Table](https://www.asciitable.com/)                                                               | Website   |\r\n| [Software Flow Control](https://en.wikipedia.org/wiki/Software_flow_control)                             | Wikipedia |\r\n| [Teleprinter](https://en.wikipedia.org/wiki/Teleprinter)                                                 | Wikipedia |\r\n| [VT100](https://en.wikipedia.org/wiki/VT100)                                                             | Wikipedia |\r\n| [VT100 User Guide](https://vt100.net/docs/vt100-ug/chapter3.html#ED)                                     | Website   |\r\n| [Ncurses](https://en.wikipedia.org/wiki/Ncurses)                                                         | Wikipedia |\r\n| [Terminfo](https://en.wikipedia.org/wiki/Terminfo)                                                       | Wikipedia |\r\n| [GNU Feature Test Macros](https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html) | Website   |\r\n| [Unix Time](https://en.wikipedia.org/wiki/Unix_time)                                                     | Wikipedia |\r\n| [Variadic Functions](https://en.wikipedia.org/wiki/Variadic_function)                                    | Wikipedia |\r\n\r\n## FUTURE IDEAS\r\n\r\n- [ ] More filetypes;\r\n- [ ] Line numbers;\r\n- [ ] Soft indent;\r\n- [ ] Auto indent;\r\n- [ ] Hard-wrap lines;\r\n- [ ] Soft-wrap lines;\r\n- [ ] Use ncurses;\r\n- [ ] Config file;\r\n- [ ] Modal editing;\r\n- [ ] Multiple buffers;\r\n\r\n## CONTRIBUTING\r\n\r\nIf you find any issues or have suggestions for improvements, feel free to fork the repository and open an issue or submit a pull request.\r\n\r\n## LICENSE\r\n\r\nThis project is a derivative work created from scratch, inspired by the [original guide](https://viewsourcecode.org/snaptoken/kilo/) authored by [snaptoken](https://github.com/snaptoken) and the [original project](https://github.com/antirez/kilo) developed by Salvatore Sanfilippo ([antirez](https://github.com/antirez)).\r\n\r\nIt is licensed under the [BSD 2-Clause License](https://github.com/jotavare/text-editor-in-c/blob/main/LICENSE) by Salvatore Sanfilippo, included within this repository.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjotavare%2Fc-text-editor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjotavare%2Fc-text-editor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjotavare%2Fc-text-editor/lists"}