comparison runtime/doc/various.txt @ 1926:43d337097e4c v7.2.223

updated for version 7.2-223
author vimboss
date Thu, 09 Jul 2009 13:55:43 +0000
parents 5232b9862f23
children 1fbbe04a950f
comparison
equal deleted inserted replaced
1925:cdfc3897c895 1926:43d337097e4c
506 ":silent menu ..." defines a menu that will not echo a 506 ":silent menu ..." defines a menu that will not echo a
507 Command-line command. The command will still produce 507 Command-line command. The command will still produce
508 messages though. Use ":silent" in the command itself 508 messages though. Use ":silent" in the command itself
509 to avoid that: ":silent menu .... :silent command". 509 to avoid that: ":silent menu .... :silent command".
510 510
511 *:uns* *:unsilent*
512 :uns[ilent] {command} Execute {command} not silently. Only makes a
513 difference when |:silent| was used to get to this
514 command.
515 Use this for giving a message even when |:silent| was
516 used. In this example |:silent| is used to avoid the
517 message about reading the file and |:unsilent| to be
518 able to list the first line of each file. >
519 :silent argdo unsilent echo expand('%') . ": " . getline(1)
520 <
521
511 *:verb* *:verbose* 522 *:verb* *:verbose*
512 :[count]verb[ose] {command} 523 :[count]verb[ose] {command}
513 Execute {command} with 'verbose' set to [count]. If 524 Execute {command} with 'verbose' set to [count]. If
514 [count] is omitted one is used. ":0verbose" can be 525 [count] is omitted one is used. ":0verbose" can be
515 used to set 'verbose' to zero. 526 used to set 'verbose' to zero.