]> granicus.if.org Git - vim/commitdiff
patch 7.4.791 v7.4.791
authorBram Moolenaar <Bram@vim.org>
Tue, 21 Jul 2015 13:03:06 +0000 (15:03 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 21 Jul 2015 13:03:06 +0000 (15:03 +0200)
Problem:    The buffer list can be very long.
Solution:   Add an argument to ":ls" to specify the type of buffer to list.
            (Marcin Szamotulski)

runtime/doc/windows.txt
src/buffer.c
src/ex_cmds.h
src/version.c

index 7f5d970edab06824b97b3c856cdb136a9d3e1288..6d9aa0b4bfb35bd6ad39f6243a0765ad4fe211b3 100644 (file)
@@ -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.
index c4d5e340baacc8d4d697f505faf890061a2bd527..19df710e8873bd32c6be7e7b06cb3ac768978623 100644 (file)
@@ -2761,7 +2761,20 @@ buflist_list(eap)
     for (buf = firstbuf; buf != NULL && !got_int; buf = buf->b_next)
     {
        /* skip unlisted buffers, unless ! was used */
-       if (!buf->b_p_bl && !eap->forceit)
+       if ((!buf->b_p_bl && !eap->forceit && !vim_strchr(eap->arg, 'u'))
+               || (vim_strchr(eap->arg, 'u') && buf->b_p_bl)
+               || (vim_strchr(eap->arg, '+')
+                       && ((buf->b_flags & BF_READERR) || !bufIsChanged(buf)))
+               || (vim_strchr(eap->arg, 'a')
+                        && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows == 0))
+               || (vim_strchr(eap->arg, 'h')
+                        && (buf->b_ml.ml_mfp == NULL || buf->b_nwindows != 0))
+               || (vim_strchr(eap->arg, '-') && buf->b_p_ma)
+               || (vim_strchr(eap->arg, '=') && !buf->b_p_ro)
+               || (vim_strchr(eap->arg, 'x') && !(buf->b_flags & BF_READERR))
+               || (vim_strchr(eap->arg, '%') && buf != curbuf)
+               || (vim_strchr(eap->arg, '#')
+                     && (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
            continue;
        msg_putchar('\n');
        if (buf_spname(buf) != NULL)
index 21d42d55d4905605998917ebb2a4182efc6465b1..794595697165b1d18614e9c28f67ca889a7ca2cf 100644 (file)
@@ -217,7 +217,7 @@ EX(CMD_browse,              "browse",       ex_wrongmodifier,
                        NEEDARG|EXTRA|NOTRLCOM|CMDWIN,
                        ADDR_LINES),
 EX(CMD_buffers,                "buffers",      buflist_list,
-                       BANG|TRLBAR|CMDWIN,
+                       BANG|EXTRA|TRLBAR|CMDWIN,
                        ADDR_LINES),
 EX(CMD_bufdo,          "bufdo",        ex_listdo,
                        BANG|NEEDARG|EXTRA|NOTRLCOM|RANGE|NOTADR|DFLALL,
@@ -526,7 +526,7 @@ EX(CMD_file,                "file",         ex_file,
                        RANGE|NOTADR|ZEROR|BANG|FILE1|TRLBAR,
                        ADDR_LINES),
 EX(CMD_files,          "files",        buflist_list,
-                       BANG|TRLBAR|CMDWIN,
+                       BANG|EXTRA|TRLBAR|CMDWIN,
                        ADDR_LINES),
 EX(CMD_filetype,       "filetype",     ex_filetype,
                        EXTRA|TRLBAR|CMDWIN,
@@ -847,7 +847,7 @@ EX(CMD_lwindow,             "lwindow",      ex_cwindow,
                        RANGE|NOTADR|COUNT|TRLBAR,
                        ADDR_LINES),
 EX(CMD_ls,             "ls",           buflist_list,
-                       BANG|TRLBAR|CMDWIN,
+                       BANG|EXTRA|TRLBAR|CMDWIN,
                        ADDR_LINES),
 EX(CMD_move,           "move",         ex_copymove,
                        RANGE|WHOLEFOLD|EXTRA|TRLBAR|CMDWIN|MODIFY,
index 18ba7d0ffee7bc06468b970135fe233205a6c4d1..2b288722fca41e936817d291deab6db7087e6687 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    791,
 /**/
     790,
 /**/