span the whole screen, as long as it starts at row 0. Helps
for programs displaying a status line at the bottom.
- selection popup now shows selection in dec/hex/oct.
- - some fixes to xpm offste and scaling code.
- perl/selection: matching on unicode characters in the selection
code was O(n²), which equals infinity in some degenerate cases
:-> Matching is now done on UTF-8, which makes it almost instant.
anymore.
- removed all traces of SMOOTH_REFRESH.
- nuked QNX support.
+ - made some fixes to xpm offset and scaling code.
- perl-overlays and refresh hooks were not applied in correct order.
- changed coordinate-system of view_start/nsaved to be top to bottom.
src/perl/selection-autotransform
src/perl/selection-pastebin
src/perl/searchable-scrollback
+src/perl/automove-background
src/perl/mark-urls
src/perl/example-refresh-hooks
src/perl/block-graphics-to-ascii
--- /dev/null
+#! perl
+
+sub on_configure_notify {
+ my ($self, $event) = @_;
+
+ $self->cmd_parse ("\033]20;;=+$event->{x}+$event->{y}\007");
+}