2019-10-24 19:09:05 +00:00
|
|
|
## Magic Enter plugin
|
2019-01-12 15:47:23 +00:00
|
|
|
|
2019-10-24 19:09:05 +00:00
|
|
|
This plugin makes your enter key magical, by binding commonly used commands to it.
|
2019-01-12 15:47:23 +00:00
|
|
|
|
2019-10-24 19:09:05 +00: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-01-12 15:47:23 +00:00
|
|
|
|
2019-10-24 19:09:05 +00:00
|
|
|
```zsh
|
|
|
|
# defaults
|
2019-01-12 15:47:23 +00:00
|
|
|
MAGIC_ENTER_GIT_COMMAND='git status -u .'
|
|
|
|
MAGIC_ENTER_OTHER_COMMAND='ls -lh .'
|
|
|
|
|
2019-10-24 19:09:05 +00:00
|
|
|
plugins=(... magic-enter)
|
2019-01-12 15:47:23 +00:00
|
|
|
```
|
2019-10-24 19:09:05 +00:00
|
|
|
|
|
|
|
**Maintainer:** [@dufferzafar](https://github.com/dufferzafar)
|