From: Simon Ruderich Date: Mon, 1 Feb 2010 12:11:49 +0000 (+0100) Subject: zsh: Fix documentation typos. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=17f2bd87caa21126716b019902fc6b81d661467f;p=config%2Fdotfiles.git zsh: Fix documentation typos. --- diff --git a/zsh/rc b/zsh/rc index 49843bc..6d1886d 100644 --- 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