From owner-freebsd-questions@FreeBSD.ORG Wed Sep 10 12:34:04 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BB7FE68 for ; Wed, 10 Sep 2014 12:34:04 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout00.t-online.de", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46F6BBC5 for ; Wed, 10 Sep 2014 12:34:04 +0000 (UTC) Received: from fwd28.aul.t-online.de (fwd28.aul.t-online.de [172.20.26.133]) by mailout04.t-online.de (Postfix) with SMTP id 1F3A2144733 for ; Wed, 10 Sep 2014 14:34:01 +0200 (CEST) Received: from t-online.de (ZYP6nyZbYhpTzhyVjFuwCfc0JvN1eS68mylIUeYih4Kjnl-Dr5W+lfroGkiUZdagrX@[84.152.247.223]) by fwd28.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384 encrypted) esmtp id 1XRh5x-3OUO5w0; Wed, 10 Sep 2014 14:33:57 +0200 Received: by t-online.de (nbSMTP-1.00) for uid 1001 (using TLSv1/SSLv3 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) johannes-maria@t-online.de; Wed, 10 Sep 2014 15:20:10 +0200 (CEST) Date: Wed, 10 Sep 2014 15:20:08 +0200 From: Johannes-Maria Kaltenbach To: freebsd-questions@freebsd.org Subject: Re: vim and cursor-over-"chars" question Message-ID: <20140910132008.GA1958@localhost> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-ID: ZYP6nyZbYhpTzhyVjFuwCfc0JvN1eS68mylIUeYih4Kjnl-Dr5W+lfroGkiUZdagrX X-TOI-MSGID: 7beb1bfe-1f4f-4ad1-9a4c-f6168baca621 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Sep 2014 12:34:04 -0000 Hello, > On Tue, 9 Sep 2014 23:30:22 +0200, Polytropon wrote: > > The following example will open an xterm with black back- > ground, grey text, and a flashing orange block cursor. > > % xterm -bg black -fg grey -cr orange +uc -bc -bcf 100 -bcn 100 > > See "man xterm" for details. or you can set this xterm configuration in your .vimrc: for cursor in command mode: let &t_EI = "\]12;orange\x7" and in insert mode: let &t_SI = "\]12;orange\x7" where you can choose a different colour. Best regards, Johannes-Maria