{"id":27761196,"url":"https://github.com/tsoding/noed","last_synced_at":"2025-09-04T16:44:13.372Z","repository":{"id":91698287,"uuid":"580917907","full_name":"tsoding/noed","owner":"tsoding","description":"Not ed(1) text editor","archived":false,"fork":false,"pushed_at":"2022-12-28T01:13:23.000Z","size":59,"stargazers_count":69,"open_issues_count":1,"forks_count":7,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-06-04T07:02:13.390Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/tsoding.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}},"created_at":"2022-12-21T19:38:23.000Z","updated_at":"2025-04-06T14:21:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"6ccb289d-688b-4b7d-a0f7-fb8d54faa8ba","html_url":"https://github.com/tsoding/noed","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tsoding/noed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fnoed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fnoed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fnoed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fnoed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsoding","download_url":"https://codeload.github.com/tsoding/noed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsoding%2Fnoed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273641123,"owners_count":25142242,"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-09-04T02:00:08.968Z","response_time":61,"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":[],"created_at":"2025-04-29T12:40:24.976Z","updated_at":"2025-09-04T16:44:13.360Z","avatar_url":"https://github.com/tsoding.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Noed\n\nNot [ed(1)](https://linux.die.net/man/1/ed).\n\n**THIS SOFTWARE IS UNFINISHED!!!**\n\n## Quick Start\n\n```console\n$ ./build.sh\n$ ./build/noed ./src/main.c\n```\n\n# Controls\n\nWe have two modes: Command and Insert. Just like in vi.\n\n## Command Mode\n\n| Key                                      | Description                            |\n|------------------------------------------|----------------------------------------|\n| \u003ckbd\u003eq\u003c/kbd\u003e                             | Quit the editor                        |\n| \u003ckbd\u003eSPACE\u003c/kbd\u003e or \u003ckbd\u003eAlt+SPACE\u003c/kbd\u003e | Switch to Insert Mode                  |\n| \u003ckbd\u003ew\u003c/kbd\u003e                             | Move up one line                       |\n| \u003ckbd\u003es\u003c/kbd\u003e                             | Move down one line                     |\n| \u003ckbd\u003ea\u003c/kbd\u003e                             | Move left one character                |\n| \u003ckbd\u003ed\u003c/kbd\u003e                             | Move right one character               |\n| \u003ckbd\u003eo\u003c/kbd\u003e                             | Move up one paragraph                  |\n| \u003ckbd\u003el\u003c/kbd\u003e                             | Move down one paragraph                |\n| \u003ckbd\u003ek\u003c/kbd\u003e                             | Move left one word                     |\n| \u003ckbd\u003e;\u003c/kbd\u003e                             | Move right one word                    |\n| \u003ckbd\u003eO\u003c/kbd\u003e                             | Move to the beginning of the file      |\n| \u003ckbd\u003eL\u003c/kbd\u003e                             | Move to the end of the file            |\n| \u003ckbd\u003eK\u003c/kbd\u003e                             | Move to the beginning of the line      |\n| \u003ckbd\u003e:\u003c/kbd\u003e                             | Move to the end of the line            |\n| \u003ckbd\u003eDELETE\u003c/kbd\u003e                        | Delete one character at the cursor     |\n| \u003ckbd\u003eBACKSPACE\u003c/kbd\u003e                     | Delete one character before the cursor |\n| \u003ckbd\u003eENTER\u003c/kbd\u003e                         | Insert new line                        |\n\n## Insert Mode\n\n| Key                                        | Description                                         |\n|--------------------------------------------|-----------------------------------------------------|\n| \u003ckbd\u003eAlt+SPACE\u003c/kbd\u003e or \u003ckbd\u003eESCAPE\u003c/kbd\u003e  | Save the current file and switch to Command Mode    |\n| \u003ckbd\u003eDELETE\u003c/kbd\u003e                          | Delete one character at the cursor                  |\n| \u003ckbd\u003eBACKSPACE\u003c/kbd\u003e                       | Delete one character before the cursor              |\n| \u003ckbd\u003eENTER\u003c/kbd\u003e                           | Insert new line                                     |\n| \u003ckbd\u003eAny displayable ASCII character\u003c/kbd\u003e | Insert the character (unicode is not supported yet) |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsoding%2Fnoed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsoding%2Fnoed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsoding%2Fnoed/lists"}