diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-07-21 15:03:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-07-21 15:03:06 +0200 |
commit | d51cb706a4e3ae99555bc214a64c83603c701139 (patch) | |
tree | 6914c0192b47519a6ff749d82405148a1ce811db /runtime | |
parent | d113a80c77101e9f5723abb075882012753cf611 (diff) | |
download | vim-git-d51cb706a4e3ae99555bc214a64c83603c701139.tar.gz |
patch 7.4.791v7.4.791
Problem: The buffer list can be very long.
Solution: Add an argument to ":ls" to specify the type of buffer to list.
(Marcin Szamotulski)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/windows.txt | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt index 7f5d970ed..6d9aa0b4b 100644 --- a/runtime/doc/windows.txt +++ b/runtime/doc/windows.txt @@ -986,9 +986,10 @@ A buffer can also be unlisted. This means it exists, but it is not in the list of buffers. |unlisted-buffer| -:files[!] *:files* -:buffers[!] *:buffers* *:ls* -:ls[!] Show all buffers. Example: +:files[!] [flags] *:files* +:buffers[!] [flags] *:buffers* *:ls* +:ls[!] [flags] + Show all buffers. Example: 1 #h "/test/text" line 1 ~ 2u "asdf" line 0 ~ @@ -1014,6 +1015,21 @@ list of buffers. |unlisted-buffer| + a modified buffer x a buffer with read errors + [flags] can be a combination of the following characters, + which restrict the buffers to be listed: + + modified buffers + - buffers with 'modifiable' off + = readonly buffers + a active buffers + u unloaded buffers (overrides the "!") + h hidden buffers + x buffers with a read error + % current buffer + # alternate buffer + Combining flags means they are "and"ed together, e.g.: + h+ hidden buffers which are modified + a+ active buffers which are modified + *:bad* *:badd* :bad[d] [+lnum] {fname} Add file name {fname} to the buffer list, without loading it. |