From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29498 invoked from network); 10 Nov 2003 16:09:09 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 10 Nov 2003 16:09:09 -0000 Received: (qmail 5662 invoked by alias); 10 Nov 2003 16:08:49 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6752 Received: (qmail 5586 invoked from network); 10 Nov 2003 16:08:49 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 10 Nov 2003 16:08:49 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [162.129.234.21] by sunsite.dk (MessageWall 1.0.8) with SMTP; 10 Nov 2003 16:8:48 -0000 Received: from jhuml2.jhmi.edu (jhuml2.jhmi.edu [162.129.234.21]) by jhuml2.jhmi.edu (PMDF V6.2-X17 #30840) with SMTP id <0HO5000BH8QKWU@jhuml2.jhmi.edu> for zsh-users@sunsite.dk; Mon, 10 Nov 2003 11:08:43 -0500 (EST) Received: from jhuml2.jhmi.edu ([162.129.234.21]) by jhuml2.jhmi.edu (SAVSMTP 3.1.0.29) with SMTP id M2003111011084303181 for ; Mon, 10 Nov 2003 11:08:43 -0500 Received: from [10.0.1.2] ([162.129.152.222]) by jhuml2.jhmi.edu (PMDF V6.2-X17 #30840) with ESMTPA id <0HO5000ZQ8UGWU@jhuml2.jhmi.edu> for zsh-users@sunsite.dk; Mon, 10 Nov 2003 11:08:43 -0500 (EST) Date: Mon, 10 Nov 2003 11:09:03 -0500 From: Peter Chen Subject: Re: Help with history . . . In-reply-to: <20031110083850.GA29585@ppe.happygiraffe.net> To: zsh-users@sunsite.dk Message-id: <33F99356-1398-11D8-A7DD-000A95A06332@jhmi.edu> MIME-version: 1.0 (Apple Message framework v606) X-Mailer: Apple Mail (2.606) Content-type: text/plain; charset=US-ASCII; format=flowed Content-transfer-encoding: 7bit References: <402D1B57-133B-11D8-9CCD-000A95A06332@jhmi.edu> <20031110083850.GA29585@ppe.happygiraffe.net> I have my HISTSIZE set to 3000 already. The problem is, when I type "history", I can only see 16 entries despite the fact I have hundreds of entries in my history file. Is there a way to get the "history" command to display all the entries in the history file like the command does in bash? Thanks. Sincerely, Peter On Nov 10, 2003, at 3:38 AM, Dominic Mitchell wrote: > On Mon, Nov 10, 2003 at 12:03:40AM -0500, Peter Chen wrote: >> I use the Ctrl-R command to search through the history of commands. >> I've noticed that the history command in zsh by default only shows the >> last dozen or so entries in the history file. When I use the Ctrl-R >> command, the command only searches through the same last dozen or so >> entries in the history file. Is there a way to get Ctrl-R and the >> history command to show ALL the entries in the history file? > > Set the HISTSIZE parameter to a larger value than it's default (32). I > have this in my .zshrc: > > HISTSIZE=1024 > > -Dom >