1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 04:30:24 +02:00

18472: spelling corrections

This commit is contained in:
Oliver Kiddle 2003-04-25 11:18:50 +00:00
parent 83932ba23f
commit a5f7097d9a
30 changed files with 85 additions and 72 deletions

View file

@ -18,7 +18,7 @@ while (( count-- )); do
match-words-by-style
# For some reason forward-word doesn't work like the other word
# word commnds; it skips whitespace only after any matched word
# commands; it skips whitespace only after any matched word
# characters.
if [[ -n $matched_words[4] ]]; then

View file

@ -10,7 +10,7 @@
# For example
# foo bar rod stick
# ^
# with the cursor where indicated whill with typical settings produce the
# with the cursor where indicated will with typical settings produce the
# elements `foo ', `bar', ` ', ` ', `rod', ` ' and `stick'.
#
# The style word-style can be set to indicate what a word is.
@ -26,7 +26,7 @@
# treated as `normal', but this should not be relied upon.)
# specified Similar to normal, except that only the words given
# in the string (and not also alphanumeric characters)
# are to be considerd parts of words.
# are to be considered parts of words.
# unspecified The negation of `specified': the characters given
# are those that aren't to be considered parts of a word.
# They should probably include white space.
@ -38,7 +38,7 @@
# zstyle ':zle:transpose-words*' word-style normal
# zstyle ':zle:transpose-words*' word-chars ''
# will force bash-style word recognition, i.e only alphanumeric characters
# are considerd parts of a word. It is up to the function which calls
# are considered parts of a word. It is up to the function which calls
# match-words-by-style to set the context in the variable curcontext,
# else a default context will be used (not recommended).
#

View file

@ -1,5 +1,5 @@
# Transpose words, matching the words using match-words-by-style, q.v.
# The group of word characters preceeding the cursor (not necessarily
# The group of word characters preceding the cursor (not necessarily
# immediately) are transposed with the group of word characters following
# the cursor (again, not necessarily immediately).
#