{"id":13577765,"url":"https://github.com/craigbarnes/dte","last_synced_at":"2025-04-04T19:13:36.805Z","repository":{"id":38684883,"uuid":"98048009","full_name":"craigbarnes/dte","owner":"craigbarnes","description":"A small, configurable console text editor (mirrored from https://gitlab.com/craigbarnes/dte)","archived":false,"fork":false,"pushed_at":"2024-10-29T13:07:18.000Z","size":11913,"stargazers_count":155,"open_issues_count":0,"forks_count":9,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-10-29T13:13:24.208Z","etag":null,"topics":["c","c99","console","console-application","editor","editors","emacs","minimalist","posix","terminal","terminal-app","terminal-based","text-editor","tty","tui","unix"],"latest_commit_sha":null,"homepage":"https://gitlab.com/craigbarnes/dte","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/craigbarnes.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/contributing.md","funding":".github/FUNDING.yml","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},"funding":{"liberapay":"craigbarnes"}},"created_at":"2017-07-22T17:42:11.000Z","updated_at":"2024-10-29T13:07:21.000Z","dependencies_parsed_at":"2023-12-23T09:23:27.462Z","dependency_job_id":"cd435ca8-1a9b-4df1-8b20-8820a6931c12","html_url":"https://github.com/craigbarnes/dte","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fdte","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fdte/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fdte/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fdte/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/craigbarnes","download_url":"https://codeload.github.com/craigbarnes/dte/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247234923,"owners_count":20905854,"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":["c","c99","console","console-application","editor","editors","emacs","minimalist","posix","terminal","terminal-app","terminal-based","text-editor","tty","tui","unix"],"created_at":"2024-08-01T15:01:24.162Z","updated_at":"2025-04-04T19:13:36.775Z","avatar_url":"https://github.com/craigbarnes.png","language":"C","funding_links":["https://liberapay.com/craigbarnes","https://liberapay.com/craigbarnes/donate"],"categories":["C"],"sub_categories":[],"readme":"dte\n===\n\nA small and easy to use terminal text editor.\n\n[![screenshot]][screenshot]\n\nFeatures\n--------\n\n* Multiple buffers/tabs\n* Unlimited [undo]/[redo]\n* Regex [search] and [replace]\n* Syntax highlighting\n* Customizable [color schemes]\n* Customizable [key bindings]\n* [Command language] with [command-line] auto-completion\n* [Macro] recording\n* Unicode 16 compatible text rendering\n* Support for multiple encodings (using [iconv])\n* Jump to definition (using [ctags])\n* Jump to [compiler error]\n* [EditorConfig] support\n* Extensible via [external commands] and [stdio]\n* Fast startup (~10ms)\n* Minimal run-time dependencies (just libc on most systems)\n* Minimal build-time dependencies ([GNU Make] and a C99 compiler)\n* Portable to any [POSIX] 2008 operating system\n* Modern terminal support:\n  * Dynamic feature queries (no [terminfo] database or curses library needed)\n  * 24-bit RGB colors\n  * [OSC 52] clipboard [copy][] (works over SSH)\n  * [Kitty keyboard protocol][] (more key combos available for binding)\n  * xterm's [`modifyOtherKeys`] keyboard protocol\n  * [\"synchronized updates\"][] (helps eliminate screen tearing)\n\nInstalling\n----------\n\n`dte` can be installed via package manager on the following platforms:\n\n| OS                        | Install command               |\n|---------------------------|-------------------------------|\n| [Debian]                  | `apt-get install dte`         |\n| [Ubuntu]                  | `apt-get install dte`         |\n| Arch Linux ([AUR])        | `$AUR_HELPER -S dte`          |\n| [Void Linux]              | `xbps-install -S dte`         |\n| Slackware ([SlackBuilds]) | See: [SlackBuild Usage HOWTO] |\n| [FreeBSD]                 | `pkg install dte`             |\n| DragonFly BSD ([DPorts])  | `pkg install dte`             |\n| [OpenBSD]                 | `pkg_add dte`                 |\n| NetBSD ([pkgsrc])         | `pkg_add dte`                 |\n| Android ([Termux])        | `pkg install dte`             |\n\nBuilding\n--------\n\nTo build from source, first ensure the following dependencies are\ninstalled:\n\n* [GCC] 4.8+ or [Clang]\n* [GNU Make] 4.0+\n* [iconv] library (usually provided by libc on Linux/FreeBSD)\n\n...then download and unpack the latest [release] tarball:\n\n    curl -LO https://craigbarnes.gitlab.io/dist/dte/dte-1.11.1.tar.gz\n    tar -xzf dte-1.11.1.tar.gz\n    cd dte-1.11.1\n\n...and compile and install:\n\n    make \u0026\u0026 sudo make install\n\nIf you're using macOS, it may be necessary to install a more recent version\nof GNU Make (e.g. with [`brew`]) and then use `gmake` in place of `make`.\nFor example:\n\n    brew install make\n    gmake \u0026\u0026 sudo gmake install\n\nDocumentation\n-------------\n\nAfter installing, you can access the documentation in man page format:\n\n* [`man dte`]\n* [`man dterc`]\n* [`man dte-syntax`]\n\nSee also:\n\n* [Contributor guidelines]\n* [Packaging information]\n\nContact\n-------\n\nQuestions and patches may be sent by email, to the address printed by:\n\n    echo ofmisnmfbqgzdfchcbamilkoca | tr zka-hm-t @.m-ta-h\n\n...although GitLab [issue reports] and [merge requests] are preferred,\nwhen possible.\n\nFor general discussion, we also have a [`#dte` channel] on the [Libera.Chat]\nIRC network.\n\nDonations\n---------\n\nDonations can be made via [Liberapay]. All support is very much\nappreciated and allows me to spend more time working on dte.\n\nLicense\n-------\n\nCopyright © 2013-2024 Craig Barnes.\\\nCopyright © 2010-2015 Timo Hirvonen.\n\nThis program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU [General Public License version 2], as published\nby the Free Software Foundation.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\nPublic License version 2 for more details.\n\n\n[`man dte`]: https://craigbarnes.gitlab.io/dte/dte.html\n[`man dterc`]: https://craigbarnes.gitlab.io/dte/dterc.html\n[`man dte-syntax`]: https://craigbarnes.gitlab.io/dte/dte-syntax.html\n[Command language]: https://craigbarnes.gitlab.io/dte/dterc.html\n[command-line]: https://craigbarnes.gitlab.io/dte/dte.html#command-mode\n[Macro]: https://craigbarnes.gitlab.io/dte/dterc.html#macro\n[color schemes]: https://craigbarnes.gitlab.io/dte/dterc.html#hi\n[compiler error]: https://craigbarnes.gitlab.io/dte/dterc.html#compile\n[copy]: https://craigbarnes.gitlab.io/dte/dterc.html#copy\n[external commands]: https://craigbarnes.gitlab.io/dte/dterc.html#external-commands\n[key bindings]: https://craigbarnes.gitlab.io/dte/dterc.html#bind\n[redo]: https://craigbarnes.gitlab.io/dte/dterc.html#redo\n[replace]: https://craigbarnes.gitlab.io/dte/dterc.html#replace\n[search]: https://craigbarnes.gitlab.io/dte/dterc.html#search\n[undo]: https://craigbarnes.gitlab.io/dte/dterc.html#undo\n\n[screenshot]: https://craigbarnes.gitlab.io/dte/screenshot.png\n[iconv]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/iconv.h.html\n[ctags]: https://ctags.io/\n[stdio]: https://man7.org/linux/man-pages/man3/stdin.3.html#DESCRIPTION\n[EditorConfig]: https://editorconfig.org/\n[GNU Make]: https://www.gnu.org/software/make/\n[POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/\n[terminfo]: https://man7.org/linux/man-pages/man5/terminfo.5.html\n[OSC 52]: https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-Operating-System-Commands\n[Kitty keyboard protocol]: https://sw.kovidgoyal.net/kitty/keyboard-protocol/\n[`modifyOtherKeys`]: https://invisible-island.net/xterm/manpage/xterm.html#VT100-Widget-Resources:modifyOtherKeys\n[\"synchronized updates\"]: https://gitlab.freedesktop.org/terminal-wg/specifications/-/merge_requests/2\n\n[Debian]: https://packages.debian.org/source/dte\n[Ubuntu]: https://launchpad.net/ubuntu/+source/dte\n[AUR]: https://aur.archlinux.org/packages/dte/\n[Void Linux]: https://github.com/void-linux/void-packages/tree/master/srcpkgs/dte\n[SlackBuilds]: https://slackbuilds.org/repository/15.0/development/dte/\n[SlackBuild Usage HOWTO]: https://slackbuilds.org/howto/\n[FreeBSD]: https://cgit.freebsd.org/ports/tree/editors/dte\n[DPorts]: https://github.com/DragonFlyBSD/DPorts/tree/master/editors/dte\n[OpenBSD]: https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/editors/dte/\n[pkgsrc]: https://cdn.netbsd.org/pub/pkgsrc/current/pkgsrc/editors/dte/index.html\n[Termux]: https://github.com/termux/termux-packages/tree/master/packages/dte\n\n[GCC]: https://gcc.gnu.org/\n[Clang]: https://clang.llvm.org/\n[release]: https://craigbarnes.gitlab.io/dte/releases.html\n[`brew`]: https://brew.sh/\n[Contributor guidelines]: https://gitlab.com/craigbarnes/dte/-/blob/master/docs/contributing.md\n[Packaging information]: https://gitlab.com/craigbarnes/dte/blob/master/docs/packaging.md\n[issue reports]: https://gitlab.com/craigbarnes/dte/-/issues\n[merge requests]: https://gitlab.com/craigbarnes/dte/-/merge_requests\n[`#dte` channel]: https://web.libera.chat/?channels=#dte\n[Libera.Chat]: https://libera.chat/\n[Liberapay]: https://liberapay.com/craigbarnes/donate\n[General Public License version 2]: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraigbarnes%2Fdte","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcraigbarnes%2Fdte","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraigbarnes%2Fdte/lists"}