No description
  • C++ 85.1%
  • C 8.8%
  • Shell 4%
  • Makefile 1.9%
  • Python 0.2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-10 11:39:40 +02:00
.github Move the issue template to a separate .github directory 2018-02-23 10:01:20 +01:00
dist The file name in the info line would not be displayed as intended if it contained double-width characters. 2022-01-29 17:41:42 +01:00
man Update the help text and manual page for the newest options 2018-03-18 11:09:00 +01:00
src Also try next file copy method when result is ENOSYS 2024-11-20 10:32:34 +01:00
testsuite Make the user config and base config use the same schema, such that system-wide defaults can be set. 2019-11-13 12:10:02 +01:00
unittests Update copy_file code to current libt3widget etc. 2019-01-19 14:20:47 +01:00
.clang-format Build libmockdir automatically when setting up the test 2018-02-03 23:01:33 +01:00
.gitignore Update copy_file code to current libt3widget etc. 2019-01-19 14:20:47 +01:00
CONTRIBUTING.md Add CONTRIBUTING.md 2026-06-10 11:39:40 +02:00
dist_config.py Prefix includes to prevent collisions between local and system header files 2018-06-15 11:37:08 +02:00
README.md docs: clarify build dependencies for Debian 12+ 2026-06-10 11:39:06 +02:00

The Tilde Text Editor

Tilde is a text editor for the console/terminal, which provides an intuitive interface for people accustomed to GUI environments such as Gnome, KDE and Windows. For example, the short-cut to copy the current selection is Control-C, and to paste the previously copied text the short-cut Control-V can be used. As another example, the File menu can be accessed by pressing Meta-F.

Tilde screenshot

For more information, see the homepage

Installing Tilde

The easiest way to install Tilde is by using the repositories from the Tilde homepage download section. If there are no binary packages provided for your distribution or hardware, you can still build Tilde from the official releases provided there. Be aware that Tilde depends on several support libraries, which are also provided through the Tilde homepage.

Building from the official release is recommended over attempting to build from the git repositories for installing Tilde. Only for development of Tilde should the git repositories be used.

Getting help

There are several ways to get help, should you have problems using, installing or building Tilde:

  • Questions and discussions can be posted on the mailing list tilde-text-editor <at> googlegroups.com.
  • For bug reports or feature suggestions, please file a bug in the github bugtracker.

Developing Tilde

To help developing Tilde, you will need to build Tilde from the git repositories. The repositories assume that all parts of Tilde, i.e. Tilde itself and its support libraries, are built from the git repositories. Please follow the steps below to build Tilde from the git repositories:

  1. Install the dependencies of Tilde from the system libraries. On a typical Debian/Ubuntu system this would include (packages for OpenSUSE and Fedora have similar names):
    • flex
    • gettext
    • libacl1-dev
    • libattr1-dev
    • libgpm-dev
    • libncurses-dev (called libncurses5-dev on older distributions)
    • libpcre2-dev
    • libtool-bin
    • libunistring-dev
    • libxcb1-dev and/or libx11-dev
    • pkg-config
    • LLnextgen — download the .deb package from the download page and install it with sudo apt install ./llnextgen_*.deb
    • clang (unless building using COMPILER=gcc)
  2. Clone the repositories:
for i in makesys transcript t3shared t3window t3widget t3key t3config t3highlight tilde ; do
    git clone https://github.com/gphalkes/$i.git
done
  1. Build all packages: ./t3shared/doall --skip-non-source --stop-on-error make -C src

Once the build is complete, tilde/src/.objects/edit is the newly compiled tilde. If the termdebug suite of tools is installed, then tilde/src/tedit can be used to run the editor while recording the input and output for debugging purposes.

Other ways to contribute

  • Creating and maintaining packages for different distributions.