
Textbringer is an Emacs-like text editor written in Ruby. It is extensible by Ruby instead of Lisp.

$ gem install textbringer
You need ncursesw to use multibyte characters. Install ncursesw before installing curses.gem, on which textbringer depends.
$ sudo apt-get install libncursesw5-dev
$ gem install curses
You need ffi to use clipboard commands on Windows.
$ gem install ffi
$ txtb
You can quit the editor by Ctrl-x Ctrl-c.
Many commands and key bindings are similar to Emacs.
Type F1 b or Alt+x describe_bindings RET to see key bindings.
You need the following configuration of terminal emulators to use meta key.
Add the following line to ~/.Xresources.
XTerm*metaSendsEscape: true
Add the following lines to ~/.mlterm/main.
mod_meta_key = alt
mod_meta_mode = esc
If your terminal emulator supports true color, set TERM to xterm-direct to enable 24-bit color.
$ TERM=xterm-direct txtb
This allows themes to display their exact hex colors instead of approximating to the 256-color palette.
Add the following line to ~/.textbringer.rb to treat ambiguous characters as fullwidth.
CONFIG[:east_asian_ambiguous_width] = 2
You also need a LD_PRELOAD hack or a modified locale charmap because ncursesw uses wcwidth(3).
xterm, mlterm and screen have their own configuration options.
Add the following lines to ~/.Xresources.
xterm*utf8: 1
xterm*locale: true
xterm*cjkWidth: true
Add the following line to ~/.mlterm/main.
col_size_of_width_a = 2
Add the following line to ~/.screenrc.
cjkwidth on
Type Alt+x load_theme RET to load a theme from textbringer/themes or ~/.textbringer/themes.
Themes can also be loaded in ~/.textbringer.rb.
load_theme "catppuccin"
If a theme sets its own background color but you prefer to use the terminal's default background, add the following after load_theme:
set_background_color "default"
After checking out the repo, run bundle install to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.
To run the tests, run bundle exec rake test. To install this gem onto your local machine, run bundle exec rake install.
To release a new version, run bundle exec rake bump on a clean main branch. It increments the version number in version.rb, commits and pushes the change, and pushes a v<N> tag. The tag triggers the push_gem.yml workflow, which publishes the gem to rubygems.org via trusted publishing and creates a GitHub release. Do not run bundle exec rake release; it would try to push the gem from your machine as well.
Bug reports and pull requests are welcome on GitHub at https://github.com/shugo/textbringer.
The gem is available as open source under the terms of the MIT License.
Ruby
98.8%

Textbringer is an Emacs-like text editor written in Ruby. It is extensible by Ruby instead of Lisp.

$ gem install textbringer
You need ncursesw to use multibyte characters. Install ncursesw before installing curses.gem, on which textbringer depends.
$ sudo apt-get install libncursesw5-dev
$ gem install curses
You need ffi to use clipboard commands on Windows.
$ gem install ffi
$ txtb
You can quit the editor by Ctrl-x Ctrl-c.
Many commands and key bindings are similar to Emacs.
Type F1 b or Alt+x describe_bindings RET to see key bindings.
You need the following configuration of terminal emulators to use meta key.
Add the following line to ~/.Xresources.
XTerm*metaSendsEscape: true
Add the following lines to ~/.mlterm/main.
mod_meta_key = alt
mod_meta_mode = esc
If your terminal emulator supports true color, set TERM to xterm-direct to enable 24-bit color.
$ TERM=xterm-direct txtb
This allows themes to display their exact hex colors instead of approximating to the 256-color palette.
Add the following line to ~/.textbringer.rb to treat ambiguous characters as fullwidth.
CONFIG[:east_asian_ambiguous_width] = 2
You also need a LD_PRELOAD hack or a modified locale charmap because ncursesw uses wcwidth(3).
xterm, mlterm and screen have their own configuration options.
Add the following lines to ~/.Xresources.
xterm*utf8: 1
xterm*locale: true
xterm*cjkWidth: true
Add the following line to ~/.mlterm/main.
col_size_of_width_a = 2
Add the following line to ~/.screenrc.
cjkwidth on
Type Alt+x load_theme RET to load a theme from textbringer/themes or ~/.textbringer/themes.
Themes can also be loaded in ~/.textbringer.rb.
load_theme "catppuccin"
If a theme sets its own background color but you prefer to use the terminal's default background, add the following after load_theme:
set_background_color "default"
After checking out the repo, run bundle install to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.
To run the tests, run bundle exec rake test. To install this gem onto your local machine, run bundle exec rake install.
To release a new version, run bundle exec rake bump on a clean main branch. It increments the version number in version.rb, commits and pushes the change, and pushes a v<N> tag. The tag triggers the push_gem.yml workflow, which publishes the gem to rubygems.org via trusted publishing and creates a GitHub release. Do not run bundle exec rake release; it would try to push the gem from your machine as well.
Bug reports and pull requests are welcome on GitHub at https://github.com/shugo/textbringer.
The gem is available as open source under the terms of the MIT License.
Ruby
98.8%