diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Doc/Zsh/zle.yo | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 0ccef3690..15bc91fef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-09-07 Daniel Shahaf <d.s@daniel.shahaf.name> + + * unposted: Doc/Zsh/zle.yo: ZLE_STATE: fix obvious documentation + typo. + 2015-09-07 James Clarke <jrtc27@jrtc27.com> * 36441: Completion/Unix/Command/_git: _git: Fixed typo in diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo index 4e9369508..f450344ba 100644 --- a/Doc/Zsh/zle.yo +++ b/Doc/Zsh/zle.yo @@ -1018,7 +1018,7 @@ The substrings are sorted in alphabetical order so that if you want to test for two specific substrings in a future-proof way, you can do match by doing: -example(if [[ $ZLE_STATE == *insert*globalhistory* ]]; then ...; fi) +example(if [[ $ZLE_STATE == *globalhistory*insert* ]]; then ...; fi) ) enditem() |