From: martin f. krafft Date: Sun, 29 Jun 2008 09:41:31 +0000 (+0200) Subject: only ls last-accessed files to half screen height on chpwd X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/d95ea66661f1856b71974571a2a2167bd8557440 only ls last-accessed files to half screen height on chpwd --- 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 }