From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: alcortes@coitt.es, 9fans@cse.psu.edu Subject: Re: [9fans] first capital letter in function names at man pages, why? Date: Thu, 20 May 2004 18:31:36 +0100 From: rog@vitanuova.com In-Reply-To: <20040520172026.GB3173@shire> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Cc: Topicbox-Message-UUID: 814debba-eacd-11e9-9e20-41e7f4b1d025 > i will modify the Look command to be case-insensitive on the first > letter of the word, and use it just for fun during a test period. while you're about it, i've thought for a while it'd be nice to have a "Lookw" command to look for whole words only, so I can easily search for single-letter variable names in my programs... the only current alternative as far as i can see is something like: :/(^|[^\\0-9a-zA-Z_])e($|[^0-9a-zA-Z_]) to search for "e", which is a bit like hard work.