summaryrefslogtreecommitdiff
path: root/plugins/magic-enter/Readme.md
diff options
context:
space:
mode:
authorShadab Zafar <dufferzafar0@gmail.com>2018-07-01 23:43:49 +0530
committerMarc Cornellà <marc.cornella@live.com>2018-07-01 20:13:49 +0200
commit78e7ec2186201a941f47d2f1f7a986bae3828e59 (patch)
tree98117a72a3d42dcca9b19a1d38606164ec95740f /plugins/magic-enter/Readme.md
parent2de926aa109181907def20c21f28d8a5e32b9d85 (diff)
downloadzsh-78e7ec2186201a941f47d2f1f7a986bae3828e59.tar.gz
zsh-78e7ec2186201a941f47d2f1f7a986bae3828e59.tar.bz2
zsh-78e7ec2186201a941f47d2f1f7a986bae3828e59.zip
Add magic-enter plugin (#4082)
* Added magic-enter plugin To bind commonly used tasks to the enter key * Allow the magic-enter commands to be modified by the user
Diffstat (limited to 'plugins/magic-enter/Readme.md')
-rw-r--r--plugins/magic-enter/Readme.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/magic-enter/Readme.md b/plugins/magic-enter/Readme.md
new file mode 100644
index 000000000..b401ab415
--- /dev/null
+++ b/plugins/magic-enter/Readme.md
@@ -0,0 +1,14 @@
+## Magic Enter
+
+**Maintainer:** [@dufferzafar](https://github.com/dufferzafar)
+
+Makes your enter key magical, by binding commonly used commands to it.
+
+You can set the commands to be run in your .zshrc, before the line containing plugins!
+
+```bash
+MAGIC_ENTER_GIT_COMMAND='git status -u .'
+MAGIC_ENTER_OTHER_COMMAND='ls -lh .'
+
+plugins=(magic-enter)
+```