From d95ea66661f1856b71974571a2a2167bd8557440 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sun, 29 Jun 2008 11:41:31 +0200 Subject: [PATCH] only ls last-accessed files to half screen height on chpwd --- .zsh/zshrc/30_aliases | 3 ++- .zsh/zshrc/31_cd_bugfix2 | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 0797598..810b799 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -43,7 +43,8 @@ alias lart='ls -lart' # List only directories and symbolic links that point to directories alias lsd='ll -d *(-/DN)' -cd () { builtin cd "$@" && lrt } +alias lscontext='print -l -- ${${(f):-"$(lrt)"}[-$((LINES/2)),-1]}' +cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST } #_cd_l() { ll } #chpwd_functions+=_cd_l diff --git a/.zsh/zshrc/31_cd_bugfix2 b/.zsh/zshrc/31_cd_bugfix2 index 70da308..43fb5dd 100644 --- a/.zsh/zshrc/31_cd_bugfix2 +++ b/.zsh/zshrc/31_cd_bugfix2 @@ -1,3 +1,3 @@ # fix until #480889 is fixed -cd () { __CHPWD_RUN_FIRST=lrt && builtin cd "$@" && unset __CHPWD_RUN_FIRST } +cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST } -- 2.39.2