]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: Fix documentation typos.
authorSimon Ruderich <simon@ruderich.org>
Mon, 1 Feb 2010 12:11:49 +0000 (13:11 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 1 Feb 2010 12:11:49 +0000 (13:11 +0100)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 49843bc62c59c977eae50c00119d125ff5d51421..6d1886d92d4b42590df7c8b30d2738a69ca49841 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -93,10 +93,10 @@ setopt incappendhistory
 setopt histignoredups
 # Vim like completions of previous executed commands (also enter Vi-mode). If
 # called at the beginning it just recalls old commands (like cursor up), if
-# called after typing something only likes starting with the typed are
+# called after typing something only lines starting with the typed are
 # returned. Very useful to get old commands quickly. Thanks to Mikachu in #zsh
-# on Freenode (2010-01-17 12:47) for the information how to a function with
-# bindkey.
+# on Freenode (2010-01-17 12:47) for the information how to a use function
+# with bindkey.
 zle -N my-vi-history-beginning-search-backward
 my-vi-history-beginning-search-backward() {
     local not_at_beginning_of_line
@@ -106,7 +106,7 @@ my-vi-history-beginning-search-backward() {
 
     zle history-beginning-search-backward
 
-    # Start Vi-mode and stay at the same position (Vi-mode modes one left,
+    # Start Vi-mode and stay at the same position (Vi-mode moves one left,
     # this counters it).
     zle vi-cmd-mode
     if [[ -n $not_at_beginning_of_line ]]; then