Merge branch 'next'
* next:
Include toggle for "showcmd" feature into config.def.h
Make selected tag in bar more contrast
Increase number of tags to 9
Fix spelling error in dvtm-pager.1
Include toggle for "showcmd" feature into config.def.h
Commit [426ff5f] introduced feature of displaying partially typed
keycombo keys; this commit introduces knob in "config.def.h" to turn it
off at compilation time.
Default value is "true" to not change behavior compared with 0.15.2.
Merge branch 'debian-patches' into next
Apply patches that were developed when I have been maintaining "dvtm" in
Debian. They are uncontroversial enough to be merged directly on "next"
branch.
* debian-patches:
Make selected tag in bar more contrast
Increase number of tags to 9
Fix spelling error in dvtm-pager.1
Make selected tag in bar more contrast
By default, in bar selected tags are colored bold blue, and non-selected
are colored default blue.
Difference is rather significant under TERM=linux, but under terminal
emulators which actually supports bold font (stterm, for example),
difference between bold and default three-letter string '[1]' is
negligible.
Increase number of tags to 9
This allows to use whole keyboard and matches default configuration of
`dwm'.
Fix spelling error in dvtm-pager.1
Merge branch 'next'
# By Dmitry Bogatov (2) and Ariadna Vigo (1)
* next:
Decoupled installation of terminfo profile from 'make install' target
Revert "Ensure compatibility with v0.15 config"
Revert "Makefile: fix variable substitution syntax"
Merge branch 'support/decouple-install-targets' into next
# By Ariadna Vigo (1) and Dmitry Bogatov (1)
* support/decouple-install-targets:
Decoupled installation of terminfo profile from 'make install' target
Release 0.15.1
Decoupled installation of terminfo profile from 'make install' target
This commit splits up the installation of the binaries, manpages, and
terminfo files. This is especially useful for terminfo files, because
some distributions ship dvtm terminfo files in their ncurses official
packages. Also, users might be interested in installing these files
onto their home folders (the default when tic is run unprivileged) or
other locations depending on their particular setup.
Revert "Ensure compatibility with v0.15 config"
According to Marc Tanner, this is unneeded complexity. I tend to agree,
although people with their own config.h files will have to adjust.
This reverts commit d55678de99e09ff50f6839122544a262743415af.
Configure continous integration
Merge branch 'next'
* next:
Configure continous integration
Makefile: fix variable substitution syntax
Ensure compatibility with v0.15 config
vt_forkpty: check for success of chdir(2)
Display control keys, when typed, next to Layout icon
copymode: Set cwd so paths make sense in editor
Added the package for Void Linux, and fixed some distro names.
When updating the title, mark the window as dirty
Don't ignore SIGPIPE in children
Fix minor memory leak in command line parsing
README: Add Guix System
Add support for "smam" and "rmam" capabilities
Makefile: fix variable substitution syntax
Makefile uses $(VAR) syntax, but exports some variables into subshell,
so ${VAR}, which is substituted by /bin/sh ocassionally works too.
Ensure compatibility with v0.15 config
Introduce configuration variable to enable/disable printkeys feature and
preprocessor macro that ensures that if isn't defined, it defaults to
"disabled" state.
vt_forkpty: check for success of chdir(2)
Display control keys, when typed, next to Layout icon
Modified-By: Dmitry Bogatov <dvtm-v1@kaction.cc>