comparison runtime/doc/eval.txt @ 805:497fab3f99d6

updated for version 7.0b01
author vimboss
date Sat, 25 Mar 2006 21:59:56 +0000
parents d8f905020502
children 4f1b94b51e99
comparison
equal deleted inserted replaced
804:db73a88f4c2d 805:497fab3f99d6
1 *eval.txt* For Vim version 7.0b. Last change: 2006 Mar 22 1 *eval.txt* For Vim version 7.0b. Last change: 2006 Mar 25
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
4708 Useful examples: > 4708 Useful examples: >
4709 tabpagewinnr(1) " current window of tab page 1 4709 tabpagewinnr(1) " current window of tab page 1
4710 tabpagewinnr(4, '$') " number of windows in tab page 4 4710 tabpagewinnr(4, '$') " number of windows in tab page 4
4711 < When {tabarg} is invalid zero is returned. 4711 < When {tabarg} is invalid zero is returned.
4712 4712
4713 *tagfiles()*
4714 tagfiles() Returns a |List| with the file names used to search for tags
4715 for the current buffer. This is the 'tags' option expanded.
4716
4717
4713 taglist({expr}) *taglist()* 4718 taglist({expr}) *taglist()*
4714 Returns a list of tags matching the regular expression {expr}. 4719 Returns a list of tags matching the regular expression {expr}.
4715 Each list item is a dictionary with at least the following 4720 Each list item is a dictionary with at least the following
4716 entries: 4721 entries:
4717 name Name of the tag. 4722 name Name of the tag.
4743 about the tag search regular expression pattern. 4748 about the tag search regular expression pattern.
4744 4749
4745 Refer to |'tags'| for information about how the tags file is 4750 Refer to |'tags'| for information about how the tags file is
4746 located by Vim. Refer to |tags-file-format| for the format of 4751 located by Vim. Refer to |tags-file-format| for the format of
4747 the tags file generated by the different ctags tools. 4752 the tags file generated by the different ctags tools.
4748
4749 *tagfiles()*
4750 tagfiles() Returns a |List| with the file names used to search for tags
4751 for the current buffer. This is the 'tags' option expanded.
4752
4753 4753
4754 tempname() *tempname()* *temp-file-name* 4754 tempname() *tempname()* *temp-file-name*
4755 The result is a String, which is the name of a file that 4755 The result is a String, which is the name of a file that
4756 doesn't exist. It can be used for a temporary file. The name 4756 doesn't exist. It can be used for a temporary file. The name
4757 is different for at least 26 consecutive calls. Example: > 4757 is different for at least 26 consecutive calls. Example: >