]> granicus.if.org Git - vim/commitdiff
patch 8.1.1737: :args command that outputs one line gives more prompt v8.1.1737
authorBram Moolenaar <Bram@vim.org>
Tue, 23 Jul 2019 21:00:08 +0000 (23:00 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 23 Jul 2019 21:00:08 +0000 (23:00 +0200)
Problem:    :args command that outputs one line gives more prompt.
Solution:   Only output line break if needed. (Daniel Hahler, closes #4715)

src/testdir/test_arglist.vim
src/version.c

index ad44a855e02d51f4b0a063d426497a884199b422..441373beae93b637eed5528251dab335cbd2fd99 100644 (file)
@@ -140,10 +140,7 @@ func Test_argument()
 
   call assert_equal(['d', 'c', 'b', 'a', 'c'], g:buffers)
 
-  redir => result
-  args
-  redir END
-  call assert_equal('a   b   [c] d', trim(result))
+  call assert_equal("\na   b   [c] d   ", execute(':args'))
 
   .argd
   call assert_equal(['a', 'b', 'd'], argv())
index 4e91567a3133aa9b235b3a0aff89b576c4b80de3..96f4bce893c9b3fdcc299813f3ed4b1ae19035fe 100644 (file)
@@ -777,6 +777,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1737,
 /**/
     1736,
 /**/
@@ -4351,6 +4353,7 @@ list_in_columns(char_u **items, int size, int current)
     int                i;
     int                ncol;
     int                nrow;
+    int                cur_row = 1;
     int                item_count = 0;
     int                width = 0;
 #ifdef FEAT_SYN_HL
@@ -4381,12 +4384,12 @@ list_in_columns(char_u **items, int size, int current)
        return;
     }
 
-    /* The rightmost column doesn't need a separator.
-     * Sacrifice it to fit in one more column if possible. */
+    // The rightmost column doesn't need a separator.
+    // Sacrifice it to fit in one more column if possible.
     ncol = (int) (Columns + 1) / width;
     nrow = item_count / ncol + (item_count % ncol ? 1 : 0);
 
-    /* i counts columns then rows.  idx counts rows then columns. */
+    // "i" counts columns then rows.  idx counts rows then columns.
     for (i = 0; !got_int && i < nrow * ncol; ++i)
     {
        int idx = (i / ncol) + (i % ncol) * nrow;
@@ -4407,8 +4410,9 @@ list_in_columns(char_u **items, int size, int current)
                msg_putchar(']');
            if (last_col)
            {
-               if (msg_col > 0)
+               if (msg_col > 0 && cur_row < nrow)
                    msg_putchar('\n');
+               ++cur_row;
            }
            else
            {
@@ -4416,11 +4420,6 @@ list_in_columns(char_u **items, int size, int current)
                    msg_putchar(' ');
            }
        }
-       else
-       {
-           if (msg_col > 0)
-               msg_putchar('\n');
-       }
     }
 }