diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-07-09 13:55:43 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-07-09 13:55:43 +0000 |
commit | 8e258a4a94a7829d116b90c7519aaa34514a0a95 (patch) | |
tree | 6b6da35297a5bd57ad7913fafe4e4a974a691aea /runtime | |
parent | 8d5946760b26dca4f5999b58a2be62e285e8cc5f (diff) | |
download | vim-git-8e258a4a94a7829d116b90c7519aaa34514a0a95.tar.gz |
updated for version 7.2-223v7.2.223
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/various.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt index cf4b0c6bc..ffb9f2682 100644 --- a/runtime/doc/various.txt +++ b/runtime/doc/various.txt @@ -508,6 +508,17 @@ N *+X11* Unix only: can restore window title |X11| messages though. Use ":silent" in the command itself to avoid that: ":silent menu .... :silent command". + *:uns* *:unsilent* +:uns[ilent] {command} Execute {command} not silently. Only makes a + difference when |:silent| was used to get to this + command. + Use this for giving a message even when |:silent| was + used. In this example |:silent| is used to avoid the + message about reading the file and |:unsilent| to be + able to list the first line of each file. > + :silent argdo unsilent echo expand('%') . ": " . getline(1) +< + *:verb* *:verbose* :[count]verb[ose] {command} Execute {command} with 'verbose' set to [count]. If |