From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1894 invoked by alias); 5 Jan 2018 22:07:24 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 23045 Received: (qmail 13319 invoked by uid 1010); 5 Jan 2018 22:07:24 -0000 X-Qmail-Scanner-Diagnostics: from mail-qt0-f178.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(209.85.216.178):SA:0(-2.4/5.0):. Processed in 5.712631 secs); 05 Jan 2018 22:07:24 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=BAYES_00, FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_PASS,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: shirishag75@gmail.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=9PMxud+ws2xA4jzs1cr0zCNrEO6365JW8d8Th511KMU=; b=VTl0W6pl0zrBcOw9DniJIOzhIHNINO65o8YgIwCmSDCa21UB5XpDcuDnVT5IIHpek4 HuttRQCo/9KJLp9q7SM8Ci9n3PV3cx0+9wXqZibB/d8I5g/nZX7THxny1CFgC7UDDzI9 fY9M9k95mQoaR3K2qdL/YLkJj+7jjWoPxdXMaCnKO6LWgIjbrpLOVMe1tT0huf+LlgTo wdIEwqkGZdFC2JBrNAfigRDWgDiCzn3mDjeNBhAJUOvrGe9dOkV05DY44ZOozqiHR6jm 8Cb9SAIPZtY+chTV4b+v/IANF5d7aIyAPBujaNiF0MPqZ1CpyX17DDr8gCgQG1rhF1C5 hwOA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=9PMxud+ws2xA4jzs1cr0zCNrEO6365JW8d8Th511KMU=; b=GShDMnv9a4u6qutDl7TeGa8TTfz2LxH+p/78QrTgEd8+Io2g9MVJijc5wbwFHPhxbj BE/CV/BJWLgJ5FB90ZrZzrCaJrvSMFkAUcUsptknq6fKLWMi9S1NOQHZ+wlAzx6fPRlF I+KrotRqGHk8qe+4p8p+0VkDEF3/oY0OmwdJ4iiURC0Hgfv+lCWDkUZbz13dsoYQFt78 UNou7feuv2ksu4HNazACaq3ONQBez1g9WxPJCrkDM76MNUpI9SHr1LvmV2Gopi2EUa1v Sr2abo1rfGLeWqKw72Zh0gJ4xuGkxTgKrKepsyYUnH0UbT/TTJO8Vxg3taN2z+vTZfnA RS0w== X-Gm-Message-State: AKwxytdYRQ7XZUBObF2fZ7laHxDVoBaLbvx8u/wBV6A9JUROZEHTmXPn ftUDZTJlaUwnsEviN0JS/0DN1FYsrnfOXZ/uapKZWg== X-Google-Smtp-Source: ACJfBov60vT9A+hY0Yt7wDDgLvaGuP1/cMJABeRHP7Mx+GJUoGxw2ZtIZ6fGGUbYHcNWS8Op6yCYIhuWBll40XVB22E= X-Received: by 10.200.55.176 with SMTP id d45mr6280549qtc.61.1515190034899; Fri, 05 Jan 2018 14:07:14 -0800 (PST) MIME-Version: 1.0 From: =?UTF-8?B?c2hpcmlzaCDgpLbgpL/gpLDgpYDgpLc=?= Date: Fri, 5 Jan 2018 22:07:14 +0000 Message-ID: Subject: zsh_history not showing all the entries but some To: zsh-users@zsh.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Dear Friends, I don't know why but .zsh_history only shows a few entries and not all. shirish@debian ~ % history 155 zless changelog.Debian.gz 156* torbrowser-launcher 157* apt-cache rdepends libsdl1.2debian 158* hg clone https://bitbucket.org/allacrost/allacrost 160 cd Videos 161 history | grep apg 162 history | less This is what is in .zshrc - % cat .zshrc # Set up the prompt autoload -Uz promptinit promptinit prompt adam1 setopt histignorealldups sharehistory # Use emacs keybindings even if our EDITOR is set to vi bindkey -e # Keep 10000 lines of history within the shell and save it to ~/.zsh_history: HISTSIZE=3D10000 SAVEHIST=3D10000 HISTFILE=3D~/.zsh_history # Use modern completion system autoload -Uz compinit compinit zstyle ':completion:*' auto-description 'specify: %d' zstyle ':completion:*' completer _expand _complete _correct _approximat= e zstyle ':completion:*' format 'Completing %d' zstyle ':completion:*' group-name '' zstyle ':completion:*' menu select=3D2 eval "$(dircolors -b)" zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS} zstyle ':completion:*' list-colors '' zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s zstyle ':completion:*' matcher-list '' 'm:{a-z}=3D{A-Z}' 'm:{a-zA-Z}=3D{A-Za-z}' 'r:|[._-]=3D* r:|=3D* l:|=3D*' zstyle ':completion:*' menu select=3Dlong zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s zstyle ':completion:*' use-compctl false zstyle ':completion:*' verbose true zstyle ':completion:*:*:kill:*:processes' list-colors '=3D(#b) #([0-9]#)*=3D0=3D01;31' zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd' I do have several tabs of the VTE (Virtual Terminal Emulator) or zsh open. Maybe I'm missing a trick or something. Except for the change in number of entries to be kept on record, all others the default values. I am on Debian testing and using zsh version - % zsh --version zsh 5.4.2 (x86_64-debian-linux-gnu) ~ % ls -l ~/.zsh_history -rw------- 1 shirish shirish 6451 Jan 5 20:59 /home/shirish/.zsh_histo= ry This is on Debian buster aka testing. --=20 Regards, Shirish Agarwal =E0=A4=B6=E0=A4=BF=E0=A4=B0=E0=A5=80=E0=A4=B7 = =E0=A4=85=E0=A4=97=E0=A5=8D=E0=A4=B0=E0=A4=B5=E0=A4=BE=E0=A4=B2 My quotes in this email licensed under CC 3.0 http://creativecommons.org/licenses/by-nc/3.0/ http://flossexperiences.wordpress.com EB80 462B 08E1 A0DE A73A 2C2F 9F3D C7A4 E1C4 D2D8