From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14113 invoked by alias); 15 Mar 2012 00:58:44 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 30356 Received: (qmail 15715 invoked from network); 15 Mar 2012 00:58:41 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at brasslantern.com does not designate permitted sender hosts) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding:x-gm-message-state; bh=ZmJJ8rZDPE2PXo12GPHgsyJuZAterfAReX3fURlN4JI=; b=nEIo19sHDP/jQDm73hfZwLyN48zn3JYg7SmPra0cjalWtq7Z4IxBABCNV7ZgRP9UED p5uWUNyVG0rJl+IGs89kjq2JIWjg5Bkvf51aj00DkzEL5lKJvdkkzggv8w5F9pEzopmk qCYaPM2t/Mdd+qHhUEJINgqpuFi0CHSQVWo93OiylABIDwDGdKFXw8YsarXV/GtmryZI 4du5V3/cvRA/5ZodTdosVqvvVIETunSRJBA+Bz0NrmmgZgpXwKT/dk+bdWMm98vKOv2G YEo6Vzuv6kG3/IY4yWrN3Fhiq2c8WnUsyWqyHkS03NlmIjJmrOPZWq3KwrzGxk3tyzOE Kuwg== MIME-Version: 1.0 In-Reply-To: <89C1220D-AAB7-4B84-9B8C-0F2F10749CDB@gmail.com> References: <160F1AB7-045E-4DF7-81FE-75D9BAC85523@gmail.com> <120308102812.ZM14534@torch.brasslantern.com> <3EA90EE7-0E80-4F61-8349-CB5C914D432E@gmail.com> <89C1220D-AAB7-4B84-9B8C-0F2F10749CDB@gmail.com> Date: Wed, 14 Mar 2012 17:58:36 -0700 Message-ID: Subject: Re: Issue with history From: Bart Schaefer To: =?ISO-8859-1?Q?Fran=E7ois?= Cc: zsh-workers@zsh.org, aifsair+zsh@gmail.com Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQlQ0aWHZciplMvdKY+v0BZt+yySoD5q2GSJDMstsY3xx4+3G3BVaTNEEMdv+RCMYzX4LxP5 On Wed, Mar 14, 2012 at 2:59 AM, Fran=E7ois wrote: > > There is still a big change that appeared in my .zsh_history: > > [=85] > vim .emacs > find . -name '*.c' > open -a emacs =A0Downloads/ddns-1.0/message.c So, where did you execute those particular commands? It begins to appear that you (unintentionally) have history configured differently for login shells as compared to other interactive shells. For example, /etc/zlogin may be resetting some history options and thereby replacing the ones that you have in your .zshrc. Try running zsh -x -i 2> /tmp/zshxi zsh -x -l 2> /tmp/zshxl diff -u /tmp/zshxi /tmp/zshxl | more then search through the diff for unexpected setopt commands, etc.