This repository has been archived on 2021-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
Kenneth Benzie (Benie) cecbcddd2b Enable gdb pretty printing for libstdc++
gdb 7.0 added support for python pretty printers, libstdc++ provides
python pretty printers but they are not loaded by default on LinuxMint
18. Load them but only for this distro as upstream Debian enables them
by default and loading them multiple times will throw an exception.
2018-11-07 11:53:45 +00:00
2018-10-23 14:14:04 +01:00
2018-08-01 22:18:57 +01:00
2018-08-01 22:18:57 +01:00
2018-08-01 22:18:57 +01:00

Terminal Configuration

terminfo

Enable italic and bold text in xterm-256color, screen-256color, and tmux-256color using user terminfo database compiler tic.

  • sitm enter italics mode, set to \E[3m which enables italics
  • ritm exit italics mode, set to \E[23m which disables italics
  • smso enter standout mode, set to \E[7m which enables bold
  • rmso exit standout mode, set to \E[27m which disabled bold

To compile a terminfo database for the current user, output to ~/.terminfo, use the following command.

$ tic xterm-256color.terminfo

readline

Enable vi mode in tools which use readline e.g. gdb, setup vim like mappings for navigation. Settings are placed in ~/.inputrc.

editline

Enable vi mode in tools which use editline e.g. lldb. Settings are places in ~/.editrc.

Description
Configuration of terminal emulators.
Readme 284 KiB
Languages
INI 100%