comparison runtime/doc/eval.txt @ 359:6c62b9b939bd v7.0093

updated for version 7.0093
author vimboss
date Sat, 25 Jun 2005 23:04:51 +0000
parents 7033303ea0c0
children 3a21825ad207
comparison
equal deleted inserted replaced
358:e111db373ca4 359:6c62b9b939bd
1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Jun 20 1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Jun 25
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
3773 When {max} is given up to this number of suggestions are 3773 When {max} is given up to this number of suggestions are
3774 returned. Otherwise up to 25 suggestions are returned. 3774 returned. Otherwise up to 25 suggestions are returned.
3775 3775
3776 {word} can be a badly spelled word followed by other text. 3776 {word} can be a badly spelled word followed by other text.
3777 This allows for joining two words that were split. The 3777 This allows for joining two words that were split. The
3778 suggestions then also include the following text. 3778 suggestions also include the following text, thus you can
3779 replace a line.
3780
3781 {word} may also be a good word. Similar words will then be
3782 returned. {word} itself is also included, most likely as the
3783 first entry, thus this can be used to check spelling.
3779 3784
3780 The spelling information for the current window is used. The 3785 The spelling information for the current window is used. The
3781 'spell' option must be set and 'spelllang' is relevant. 3786 'spell' option must be set and the value of 'spelllang' is
3787 used.
3782 3788
3783 3789
3784 split({expr} [, {pattern} [, {keepempty}]]) *split()* 3790 split({expr} [, {pattern} [, {keepempty}]]) *split()*
3785 Make a List out of {expr}. When {pattern} is omitted or empty 3791 Make a List out of {expr}. When {pattern} is omitted or empty
3786 each white-separated sequence of characters becomes an item. 3792 each white-separated sequence of characters becomes an item.