0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/magic-enter/README.md

18 lines
558 B
Markdown
Raw Normal View History

2019-10-19 17:39:03 +02:00
## Magic Enter plugin
2019-10-19 17:39:03 +02:00
This plugin makes your enter key magical, by binding commonly used commands to it.
2019-10-19 17:39:03 +02:00
To use it, add `magic-enter` to the plugins array in your zshrc file. You can set the
commands to be run in your .zshrc, before the line containing plugins. If no command
is specified in a git directory, `git status` is executed; in other directories, `ls`.
2019-10-19 17:39:03 +02:00
```zsh
# defaults
MAGIC_ENTER_GIT_COMMAND='git status -u .'
MAGIC_ENTER_OTHER_COMMAND='ls -lh .'
2019-10-19 17:39:03 +02:00
plugins=(... magic-enter)
```
2019-10-19 17:39:03 +02:00
**Maintainer:** [@dufferzafar](https://github.com/dufferzafar)