Hacker News new | ask | show | jobs
by tacone 912 days ago
I have my zsh set up so that if I just press Enter without writing anything it will run ls -l or git status if it's a git directory.
1 comments

How do you do that? Is it part of your PROMPT?
Sorry for the lag, I'll just drop the answer anyway in case it still can be helpful to you or anybody else.

It's actually a oh-my-zsh plugin, called "magic-enter".

I defined MAGIC_ENTER_GIT_COMMAND="git status" and then included the plugin.

You can find a different but similar plugin here: https://github.com/zshzoo/magic-enter/blob/main/magic-enter....

Neat, thanks!