Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I've got ZSH doing all this cool stuff now, but what would be REALLY awesome is if I could get it to run 'ls -a' implicitly after every time I call 'cd'. I figure this must go in the .zlogin file or the .aliases file, I'm just not sure what the best solution is. Thoughts? Reference material?

share|improve this question

3 Answers

Put the following into .zshrc:

function cd() {
    emulate -LR zsh
    builtin cd $@ &&
    ls -a
}

EDIT: After looking at documentation (zshbuiltins, description of cd builtin) I found a better way: it is using either chpwd function or chpwd_functions array:

function chpwd() {
    emulate -L zsh
    ls -a
}
share|improve this answer
This works really well, I forgot to mention I have auto_cd turned on so this only works when I explicitly call 'cd'. Is there a way to get this to behave this way any time I change directories? – drmanitoba Oct 19 '10 at 14:56
@drmanitoba see updated answer. – ZyX Oct 19 '10 at 16:27
Awesome! Thanks so much! – drmanitoba Oct 21 '10 at 13:54
2  
what is emulate -LR zsh for? – moo Jan 18 '12 at 1:11
2  
@moo man zshbuiltins. Resets some options (here: for the duration of current function), not really required here, but it is good to put emulate zsh/emulate -L zsh at the start of every function so that you will know that this function won’t ever break independent of whatever user has set. -R is an overkill, it resets all options. – ZyX Jan 18 '12 at 16:02

Write a function that performs the cd as requested, then performs a ls -a. Make sure you don't make it terribly difficult to disable though.

share|improve this answer

You can do this via a simple alias:

alias cd='cd $* && ls -a'

Put this in your .zshrc

share|improve this answer
Downvoted why ? – Brian Agnew Oct 18 '10 at 23:04
Not a clue. Maybe someone thinks that you can't use positional parameters in aliases in zsh. – Ignacio Vazquez-Abrams Oct 18 '10 at 23:07
3  
-1: alias is not a function, so ls -a will get the arguments while cd will not. You should have used function. – ZyX Oct 18 '10 at 23:10
@Ignacio Vazquez-Abrams you think you can? – ZyX Oct 18 '10 at 23:12
1  
I can't duplicate your success with 4.3.10 here. – Ignacio Vazquez-Abrams Oct 18 '10 at 23:20
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.