| Commit message (Collapse) | Author | Age |
... | |
|
|
|
| |
session attached flag is correct.
|
|
|
|
| |
can work.
|
| |
|
|
|
|
|
|
| |
information and are missing widths for relatively common Unicode
characters (so mbtowc() works, but wcwidth() fails). So if wcwidth()
returns -1, assume a width of 1 instead of ignoring the character.
|
| |
|
| |
|
|
|
|
| |
codepoint not appearing.
|
|
|
|
| |
append instead.
|
| |
|
|
|
|
| |
of clients quickly.
|
|
|
|
| |
if the same had been done line-by-line. From Michal Mazurek.
|
|
|
|
| |
MouseDragEnd. It can be useful to bind them separately in copy mode.
|
|
|
|
|
|
|
| |
locale since if it isn't UTF-8 the system is broken anyway. If it fails,
try "" and check for UTF-8 with nl_langinfo(CODESET) rather than
wcwidth(). Based on a diff from schwarze@, nl_langinfo also suggested by
stsp@.
|
| |
|
|
|
|
|
| |
so fall back to setlocale(LC_CTYPE, ""). tmux requires a UTF-8 locale,
so check with wcwidth() on a UTF-8 character after setlocale().
|
| |
|
| |
|
|
|
|
| |
that happens when working out if they are supported.
|
|
|
|
|
| |
characters where we can't find the width (wcwidth() fails) on input, the
same as we drop invalid UTF-8. Suggested by schwarze@.
|
| |
|
|
|
|
| |
key_bindings_unref_table.
|
| |
|
|
|
|
| |
doing the drag end in code. From Stephen Coakley.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
attach-session, GitHub issue 295.
|
| |
|
| |
|
| |
|
|
|
|
| |
suggested by Kevin Brubeck Unhammer.
|
|
|
|
| |
Graczyk.
|
|
|
|
|
|
|
|
| |
wasting unnecessary space. The 'Tc' flag must be set in the external
TERM entry (using terminal-overrides or a custom terminfo entry), if not
tmux will map to the closest of the 256 or 16 colour palettes.
Mostly from Suraj N Kurapati, based on a diff originally by someone else.
|
|
|
|
| |
replaced if we already know the current.
|
| |
|
| |
|
|
|
|
| |
looping over it (which may skip entries), from Brad King.
|
| |
|
| |
|
|
|
|
| |
break out of the loop early. From Nicolas Viennot.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
used to escape from, for example, printf '\033]2;').
|