From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10580 invoked from network); 29 Apr 2008 20:22:10 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 29 Apr 2008 20:22:10 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 61958 invoked from network); 29 Apr 2008 20:22:07 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 29 Apr 2008 20:22:07 -0000 Received: (qmail 1802 invoked by alias); 29 Apr 2008 20:22:04 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 24896 Received: (qmail 1790 invoked from network); 29 Apr 2008 20:22:03 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 29 Apr 2008 20:22:03 -0000 Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.174]) by bifrost.dotsrc.org (Postfix) with ESMTP id B9A368022638 for ; Tue, 29 Apr 2008 22:21:59 +0200 (CEST) Received: by wf-out-1314.google.com with SMTP id 23so38850wfg.3 for ; Tue, 29 Apr 2008 13:21:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=jvZSk+1FpXbt3hJWg8beymkq4jGQNttZknBe2WJQqgU=; b=p34YxQczLQKMwJM4jUdMqn9OGwsRvjAVhrUZYZ9ZSYvRjbNn6+c/TWwhr632/VI5W1qFo6IqvD9J83z7GxOhfucD3Wfhx4lCMa7LstrY7glqRAxdya1YIqyIsaOaRe2mWbFmyT7mnZ08CVWu5KdxntnXrKHHYX2TF6eJwmrKb3c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=s2LS8BCE5C5TckKfCR4/DWmddCbB4xO1s/6sab/aDGkwfHUfYa354ebmSCQzRTuzYt826gzco4WLe6reEYKPWlcdGYKBvjTcl/ZNhO82tiYqjQxcykcRnAhTxO709Ob1asN2+kiv7hFKz8zkaWgeSLqSG2MGLihidqGRUMyR9RE= Received: by 10.142.44.11 with SMTP id r11mr1252356wfr.142.1209500518241; Tue, 29 Apr 2008 13:21:58 -0700 (PDT) Received: by 10.142.142.12 with HTTP; Tue, 29 Apr 2008 13:21:57 -0700 (PDT) Message-ID: <17393e3e0804291321x846d2fdq2dcd5315157b6f80@mail.gmail.com> Date: Tue, 29 Apr 2008 16:21:57 -0400 From: "Matt Wozniski" To: zsh-workers@sunsite.dk Subject: Re: PATCH: isearch match highlighting In-Reply-To: <17393e3e0804291312u2ee2f3fcnfb274e295bfc7049@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <17393e3e0804261727s560acff7sb6125d8f8b46b4b4@mail.gmail.com> <200804271957.m3RJvxiS004075@pws-pc.ntlworld.com> <17393e3e0804271849l30fe20bdp4008fc8247298d12@mail.gmail.com> <20080428102001.7b55074e@news01> <20080429181022.12809d23@news01> <17393e3e0804291312u2ee2f3fcnfb274e295bfc7049@mail.gmail.com> X-Virus-Scanned: ClamAV 0.91.2/6988/Tue Apr 29 21:13:07 2008 on bifrost X-Virus-Status: Clean On Tue, Apr 29, 2008 at 4:12 PM, Matt Wozniski wrote: > On Tue, Apr 29, 2008 at 1:10 PM, Peter Stephenson wrote: > > I've just remembered I haven't documented the fact that only colours 0 to > > 255 are allowed internally. I can't be bothered to remake the patch, so > > I'll alter that before committing. The numbers of supported colours > > reported by a few terminals I tried are: > > > > xterm: 8 > > rxvt-unicode: 88 > > konsole: 8 > > gnome-terminal: 8 > > Linux console: 8 > > > > so mostly just the ANSI set. I did try the extended colours on > > rxvt-unicode and they seemed to work. I have a vague feeling I saw > > a terminal claim to support 256. > > xterm-256color: 256 > screen-256color: 256 > > Both xterm and screen can be compiled with 256 color support. Actually, FYI, gnome-terminal and konsole also support 256 colors; TERM=gnome-256color and TERM=konsole-256color. Konsole, in fact, supports all 24-bit colors through its own extended syntax (CSI 38 ; 2 ; ; ; m), though I don't know of any apps that use it... Though we could allow it here if we had the same "send this string to start highlighting and this string to end" sort of thing like we can do in prompts... ~Matt