{"id":13752080,"url":"https://github.com/madnight/nano","last_synced_at":"2025-07-12T02:32:27.283Z","repository":{"id":42659036,"uuid":"73495312","full_name":"madnight/nano","owner":"madnight","description":"Mirror of git://git.sv.gnu.org/nano.git","archived":false,"fork":false,"pushed_at":"2024-04-08T01:04:13.000Z","size":39306,"stargazers_count":97,"open_issues_count":1,"forks_count":35,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-13T09:19:03.510Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://nano-editor.org","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/madnight.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null}},"created_at":"2016-11-11T16:55:41.000Z","updated_at":"2024-04-15T05:12:36.390Z","dependencies_parsed_at":"2023-09-25T03:58:36.821Z","dependency_job_id":"4e168eb9-9220-415b-97de-99bf2574eb73","html_url":"https://github.com/madnight/nano","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madnight%2Fnano","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madnight%2Fnano/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madnight%2Fnano/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madnight%2Fnano/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/madnight","download_url":"https://codeload.github.com/madnight/nano/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225786693,"owners_count":17524056,"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":[],"created_at":"2024-08-03T09:00:59.102Z","updated_at":"2025-07-12T02:32:27.242Z","avatar_url":"https://github.com/madnight.png","language":"C","funding_links":[],"categories":["Terminal"],"sub_categories":["Apps and Tools"],"readme":"\n          GNU nano -- a simple editor, inspired by Pico\n\nPurpose\n\n    Nano is a small and simple text editor for use on the terminal.\n    It copied the interface and key bindings of the Pico editor but\n    added several missing features: undo/redo, syntax highlighting,\n    line numbers, softwrapping, multiple buffers, selecting text by\n    holding Shift, search-and-replace with regular expressions, and\n    several other conveniences.\n\nAppearance\n\n    In rough ASCII graphics, this is what nano's screen looks like:\n\n   ____________________________________________________________________\n  |  GNU nano 8.5                  filename                  Modified  |\n   --------------------------------------------------------------------\n  | This is the text window, displaying the contents of a 'buffer',    |\n  | the contents of the file you are editing.                          |\n  |                                                                    |\n  | The top row of the screen is the 'title bar'; it shows nano's      |\n  | version, the name of the file, and whether you modified it.        |\n  | The two bottom rows display the most important shortcuts; in       |\n  | those lines ^ means Ctrl.  The third row from the bottom shows     |\n  | some feedback message, or gets replaced with a prompt bar when     |\n  | you tell nano to do something that requires extra input.           |\n  |                                                                    |\n   --------------------------------------------------------------------\n  |                       [ Some status message ]                      |\n  |^G Help       ^O Write Out  ^F Where Is   ^K Cut        ^T Execute  |\n  |^X Exit       ^R Read File  ^\\ Replace    ^U Paste      ^J Justify  |\n   --------------------------------------------------------------------\n\nOrigin\n\n    The nano project was started in 1999 because of a few \"problems\"\n    with the wonderfully easy-to-use and friendly Pico text editor.\n\n    First and foremost was its license: the Pine suite does not use\n    the GPL, and (before using the Apache License) it had unclear\n    restrictions on redistribution.  Because of this, Pine and Pico\n    were not included in many GNU/Linux distributions.  Furthermore,\n    some features (like go-to-line-number or search-and-replace) were\n    unavailable for a long time or require a command-line flag.  Yuck.\n\n    Nano aimed to solve these problems by: 1) being truly free software\n    by using the GPL, 2) emulating the functionality of Pico as closely\n    as is reasonable, and 3) including extra functionality by default.\n\n    Nowadays, nano wants to be a generally useful editor with sensible\n    defaults (linewise scrolling, no automatic line breaking).\n\n    The nano editor is an official GNU package.  For more information on\n    GNU and the Free Software Foundation, please see https://www.gnu.org/.\n\nLicense\n\n    Nano's code and documentation are covered by the GPL version 3 or\n    (at your option) any later version, except for two functions that\n    were copied from busybox which are under a BSD license.  Nano's\n    documentation is additionally covered by the GNU Free Documentation\n    License version 1.2 or (at your option) any later version.  See the\n    files COPYING and COPYING.DOC for the full text of these licenses.\n\n    When in any file of this package a copyright notice mentions a\n    year range (such as 1999-2011), it is a shorthand for a list of\n    all the years in that interval.\n\nHow to compile and install nano\n\n    Download the latest nano source tarball, and then:\n\n        tar -xvf nano-x.y.tar.gz\n        cd nano-x.y\n        ./configure\n        make\n        make install\n\n    You will need the header files of ncurses installed for ./configure\n    to succeed -- get them from libncurses-dev (Debian) or ncurses-devel\n    (Fedora) or a similarly named package.  Use --prefix with ./configure\n    to override the default installation directory of /usr/local.\n\n    After installation you may want to copy the doc/sample.nanorc file\n    to your home directory, rename it to \".nanorc\", and then edit it\n    according to your taste.\n\nWeb Page\n\n    https://nano-editor.org/\n\nMailing Lists\n\n    There are three nano-related mailing-lists.\n\n    * \u003cinfo-nano@gnu.org\u003e is a very low traffic list used to announce\n      new nano versions or other important info about the project.\n\n    * \u003chelp-nano@gnu.org\u003e is for those seeking to get help without\n      wanting to hear about the technical details of its development.\n\n    * \u003cnano-devel@gnu.org\u003e is the list used by the people that make nano\n      and a general development discussion list, with moderate traffic.\n\n    To subscribe, send email to \u003cname\u003e-request@gnu.org with a subject\n    of \"subscribe\", where \u003cname\u003e is the list you want to subscribe to.\n\n    The archives of the development and help mailing lists are here:\n\n        https://lists.gnu.org/archive/html/nano-devel/\n        https://lists.gnu.org/archive/html/help-nano/\n\nBug Reports\n\n    If you find a bug, please file a detailed description of the problem\n    on nano's issue tracker: https://savannah.gnu.org/bugs/?group=nano\n    (you will need an account to be able to do so), or send an email\n    to the nano-devel list (no need to subscribe, but mention it if\n    you want to be CC'ed on an answer).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadnight%2Fnano","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmadnight%2Fnano","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadnight%2Fnano/lists"}