comparison runtime/doc/eval.txt @ 613:53114ef7778f

updated for version 7.0174
author vimboss
date Mon, 19 Dec 2005 22:14:58 +0000
parents d220eb88e4e4
children 7fe13e0f5dce
comparison
equal deleted inserted replaced
612:b9370cfb091a 613:53114ef7778f
1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Dec 12 1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Dec 19
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
2198 #event#pattern autocommand defined for this event and 2198 #event#pattern autocommand defined for this event and
2199 pattern (the pattern is taken 2199 pattern (the pattern is taken
2200 literally and compared to the 2200 literally and compared to the
2201 autocommand patterns character by 2201 autocommand patterns character by
2202 character) 2202 character)
2203 #group autocommand group exists
2204 #group#event autocommand defined for this group and
2205 event.
2206 #group#event#pattern
2207 autocommand defined for this group,
2208 event and pattern.
2203 For checking for a supported feature use |has()|. 2209 For checking for a supported feature use |has()|.
2204 2210
2205 Examples: > 2211 Examples: >
2206 exists("&shortname") 2212 exists("&shortname")
2207 exists("$HOSTNAME") 2213 exists("$HOSTNAME")
2208 exists("*strftime") 2214 exists("*strftime")
2209 exists("*s:MyFunc") 2215 exists("*s:MyFunc")
2210 exists("bufcount") 2216 exists("bufcount")
2211 exists(":Make") 2217 exists(":Make")
2212 exists("#CursorHold"); 2218 exists("#CursorHold")
2213 exists("#BufReadPre#*.gz") 2219 exists("#BufReadPre#*.gz")
2220 exists("#filetypeindent")
2221 exists("#filetypeindent#FileType")
2222 exists("#filetypeindent#FileType#*")
2214 < There must be no space between the symbol (&/$/*/#) and the 2223 < There must be no space between the symbol (&/$/*/#) and the
2215 name. 2224 name.
2216 Note that the argument must be a string, not the name of the 2225 Note that the argument must be a string, not the name of the
2217 variable itself! For example: > 2226 variable itself! For example: >
2218 exists(bufcount) 2227 exists(bufcount)
4608 4617
4609 all_builtin_terms Compiled with all builtin terminals enabled. 4618 all_builtin_terms Compiled with all builtin terminals enabled.
4610 amiga Amiga version of Vim. 4619 amiga Amiga version of Vim.
4611 arabic Compiled with Arabic support |Arabic|. 4620 arabic Compiled with Arabic support |Arabic|.
4612 arp Compiled with ARP support (Amiga). 4621 arp Compiled with ARP support (Amiga).
4613 autocmd Compiled with autocommands support. 4622 autocmd Compiled with autocommand support. |autocommand|
4614 balloon_eval Compiled with |balloon-eval| support. 4623 balloon_eval Compiled with |balloon-eval| support.
4615 balloon_multiline GUI supports multiline balloons. 4624 balloon_multiline GUI supports multiline balloons.
4616 beos BeOS version of Vim. 4625 beos BeOS version of Vim.
4617 browse Compiled with |:browse| support, and browse() will 4626 browse Compiled with |:browse| support, and browse() will
4618 work. 4627 work.