summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cancel running selection requestcancel-running-selection-requesttv2019-01-312-6/+6
| | | | | | | | | When using X security extensions to run urxvt as trusted X client and requesting a selection from an untrusted client, then no X event will be received, but the selection request will timeout instead. This patch cancels any running request before creating a new one, so that the user doesn't have to wait 10 seconds for the timeout before being able to initiate a new one.
* *** empty log message ***root2018-12-242-0/+4433
|
* searchable-scrollback: add bindings for scrolling and pastingsf-exg2017-10-241-0/+258
|
* Improve readability of keysym modifier names (debian bug #839769).sf-exg2017-10-131-0/+1770
|
* autogen.sh: Add check for libptytty directorysf-exg2017-10-131-0/+30
| | | | Patch by Petr Vorel.
* Fix urxvtd crash when using a background expression.sf-exg2017-07-152-0/+1129
| | | | | | | | | A rxvt_img object contains a pointer to the associated rxvt_screen, which in practice corresponds to the terminal object that created the image. This causes a use-after-free when there are two or more terminal objects sharing a rxvt_img and the one that created it is destroyed. This patch fixes the issue by replacing the rxvt_screen pointer with a pointer to the associated rxvt_display.
* Account for focus fading when enabling/disabling reverse video.sf-exg2017-07-151-0/+3697
| | | | Patch by Daniel Hahler.
* *** empty log message ***root2017-07-131-0/+2305
|
* *** empty log message ***root2017-05-181-0/+4155
|
* Doc fix.sf-exg2017-02-262-0/+510
|
* Fix bg option priority.sf-exg2016-07-141-0/+1566
|
* *** empty log message ***root2016-06-221-0/+99
|
* 24-bit direct color support (patch by Fengguang Wu)sf-exg2016-06-211-0/+133
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support directly setting RGB fg/bg colors via ISO-8613-3 24-bit ANSI color escapes: ESC[38;2;<r>;<g>;<b>m Select RGB foreground color ESC[48;2;<r>;<g>;<b>m Select RGB background color The killer applications for me are vim in tmux. It'll not only modernize their look and feeling, but also bring more eye friendly color schemes. Very helpful for long time programmers. To avoid memory overheads and keep the patch non-intrusive, it takes the approach to adapt the nearest color in an hidden 6x6x4 (88-color mode) or 7x7x5 (256-color mode) color cube to the new 24-bit RGB color. The pros/cons are: +) least memory footprint (close to 0) comparing to konsole, gnome-terminal etc. real 24-bit arrays +) exact colors and excellent user feelings comparing to xterm, mlterm, etc. approximating to 256 palette +) usable in both the existing 88/256-color modes Most vim GUI color schemes show up the same as gvim in rxvt-unicode's 88-color mode, not to mention the 256-color mode. Typical applications only use one or two dozens of colors at the same time. -) may not be able to show 2+ close 24-bit colors RGB colors close to each other will likely fall into the same slot in the 6x6x4 or 7x7x5 color cube. If necessary, it could be improved effectively by implementing some collision avoidance logic, trying to find empty/eldest slot in the +1/-1 r/g/b indices (ie. 3-8 neighbors). The CPU overheads of map_rgb24_color() look ignorable: I feel no perceptible slow down when doing vim operations in 24-bit color mode. A micro benchmark running a test script from [1]: % time (for i in {1..100}; do 24-bit-color.sh; done) vanilla rxvt-unicode ==================== 2.42s user 1.88s system 31% cpu 13.555 total 2.59s user 1.74s system 31% cpu 13.615 total 2.46s user 1.85s system 31% cpu 13.631 total THIS PATCH (adapt hidden color cube to 24-bit) ============================================== 2.33s user 1.97s system 31% cpu 13.598 total 2.46s user 1.89s system 31% cpu 13.613 total 2.51s user 1.82s system 31% cpu 13.556 total https://github.com/spudowiar/rxvt-unicode (real 24-bit array) ============================================================= 2.61s user 1.75s system 31% cpu 13.721 total 2.48s user 1.82s system 31% cpu 13.566 total 2.60s user 1.76s system 31% cpu 13.631 total USE_256_COLORS is defined in all the above rxvt-unicode builds. References: [1] True Colour (16 million colours) support in various terminal applications and terminals https://gist.github.com/XVilka/8346728 [2] https://en.wikipedia.org/wiki/ANSI_escape_code#Colors
* 9.22-mayberoot2016-05-147-0/+15364
|
* Update copyright years.sf-exg2015-10-131-0/+301
|
* terminfo: add capabilities for various ctrl and shift-ctrl key variants.sf-exg2015-10-131-0/+192
| | | | Patch by Sebastian Schmidt.
* Fix a crash when parsing an invalid color sequence (reported by Kuang-che Wu).sf-exg2015-09-121-0/+1279
|
* *** empty log message ***sf-exg2015-06-161-0/+484
|
* Bail out if --disable-resources is given and either frills or perl is enabled.sf-exg2015-06-161-0/+802
|
* Factor code to find a library with pkg-config into a macro.sf-exg2015-06-161-0/+17
|
* *** empty log message ***root2015-04-116-0/+8517
|
* Add support in matcher to cycle through the matches with a key combination ↵sf-exg2015-03-171-0/+506
| | | | bound to 'matcher:select'.
* Add perl method to lookup the action bound to a key combination.sf-exg2015-03-171-0/+87
|
* *** empty log message ***root2014-12-311-0/+267
|
* name, alldoccleanroot2014-12-311-0/+104
|
* *** empty log message ***root2014-12-262-0/+150
|
* ughroot2014-12-141-0/+92
|
* Make new/delete compatible with C++11 and change new to use rxvt_malloc.sf-exg2014-11-122-0/+431
|
* Replace auto_ptr with estl::scoped_array.sf-exg2014-11-101-0/+128
|
* Doc fix.sf-exg2014-11-051-0/+21
|
* *** empty log message ***root2014-10-301-0/+148
|
* Destroy overlay timer on terminal destruction in ↵sf-exg2014-10-302-0/+248
| | | | selection-{autotransform,popup}.
* Restore keysym-list extension.sf-exg2014-10-132-0/+99
|
* Add -k option to urxvtc for killing the daemon process.sf-exg2014-10-063-0/+542
|
* Add -mc option and multiClickTime resource, patch by Joe Peterson.sf-exg2014-08-162-0/+135
|
* Restore on_user_command hooks for backward compatibility.sf-exg2014-06-092-0/+332
|
* Fix height and position of the stippled area in next scrollbar, patch by totto.sf-exg2014-05-302-0/+527
|
* Update config.{guess,sub}.sf-exg2014-05-232-0/+3214
|
* Add eval extension.sf-exg2014-05-231-0/+119
|
* GPLv3root2014-05-2211-0/+2965
|
* X_RESOURCE => RESOURCEroot2014-05-171-0/+132
|
* Fix typos.sf-exg2014-04-131-0/+27
|
* Revert last change.sf-exg2013-12-311-0/+11
| | | | | ptytty::create now uses the helper regardless of the pid of the running process.
* Cosmetics.sf-exg2012-09-221-0/+87
|
* *** empty log message ***root2012-09-211-0/+5
|
* *** empty log message ***root2012-09-211-0/+30
|
* Update wcwidth patch.sf-exg2012-09-091-0/+254
|
* *** empty log message ***root2012-09-048-0/+519
|
* add emman.h/c and use it for scrollbackroot2012-06-281-0/+21
|
* *** empty log message ***root2012-06-141-0/+57
|