diff options
author | Martin Mladenov <30376060+martinmladenov@users.noreply.github.com> | 2019-10-09 19:09:29 +0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-10-09 18:09:29 +0200 |
commit | 11e23477527a0314ffbed74a3d061ae76034da15 (patch) | |
tree | ca29af8af85ca9db99cc76ad531dee96aa8203a5 /plugins | |
parent | 66bd299bcdbc00ba92ab9230bf64f531a77b3d34 (diff) | |
download | zsh-11e23477527a0314ffbed74a3d061ae76034da15.tar.gz zsh-11e23477527a0314ffbed74a3d061ae76034da15.tar.bz2 zsh-11e23477527a0314ffbed74a3d061ae76034da15.zip |
git-escape-magic: fix typos in README (#8234)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git-escape-magic/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/git-escape-magic/README.md b/plugins/git-escape-magic/README.md index c3e3898f5..7fefed39d 100644 --- a/plugins/git-escape-magic/README.md +++ b/plugins/git-escape-magic/README.md @@ -4,13 +4,13 @@ This plugin is copied from the original at https://github.com/knu/zsh-git-escape-magic. All credit for the functionality enabled by this plugin should go to @knu. -An excerpt from that project's readme explains it's purpose. +An excerpt from that project's readme explains its purpose. > It eliminates the need for manually escaping those meta-characters. The zle function it provides is context aware and recognizes the characteristics of each subcommand of git. Every time you type one of these meta-characters on a git command line, it automatically escapes the meta-character with a backslash as necessary and as appropriate. ## Usage -To use this plugin add it to your list of plugins in your `.zshrc` file. +To use this plugin, add it to your list of plugins in your `.zshrc` file. -**NOTE**: If you use url-quote-magic it must be included before this +**NOTE**: If you use url-quote-magic, it must be included before this plugin runs to prevent any conflicts. |