Skip to content
Snippets Groups Projects
  1. Jun 10, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1915 · 2a67ed83
      Bram Moolenaar authored
      Problem:    The effect of the PopupMenu autocommand isn't directly visible.
      Solution:   Call gui_update_menus() before displaying the popup menu. (Shane
                  Harper, closs #855)
      v7.4.1915
      2a67ed83
    • Bram Moolenaar's avatar
      patch 7.4.1914 · e429e70f
      Bram Moolenaar authored
      Problem:    Executing autocommands while using the signal stack has a high
                  chance of crashing Vim.
      Solution:   Don't invoke autocommands when on the signal stack.
      v7.4.1914
      e429e70f
  2. Jun 09, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1913 · 1610d052
      Bram Moolenaar authored
      Problem:    When ":doautocmd" is used modelines are used even when no
                  autocommands were executed. (Daniel Hahler)
      Solution:   Skip processing modelines. (closes #854)
      v7.4.1913
      1610d052
    • Bram Moolenaar's avatar
      patch 7.4.1912 · 1cee693b
      Bram Moolenaar authored
      Problem:    No test for using setqflist() on an older quickfix list.
      Solution:   Add a couple of tests.
      v7.4.1912
      1cee693b
    • Bram Moolenaar's avatar
      patch 7.4.1911 · 1fd99c1c
      Bram Moolenaar authored
      Problem:    Recent history lines may be lost when exiting Vim.
      Solution:   Merge history using the timestamp.
      v7.4.1911
      1fd99c1c
  3. Jun 08, 2016
  4. Jun 07, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1907 · 1d5f1d07
      Bram Moolenaar authored
      Problem:    Warnings from 64 bit compiler.
      Solution:   Change type to size_t. (Mike Williams)
      v7.4.1907
      1d5f1d07
    • Bram Moolenaar's avatar
      patch 7.4.1906 · 5f1032d2
      Bram Moolenaar authored
      Problem:    Collapsing channel buffers and searching for NL does not work
                  properly. (Xavier de Gary, Ramel Eshed)
      Solution:   Do not assume the buffer contains a NUL or not.  Change NUL bytes
                  to NL to avoid the string is truncated.
      v7.4.1906
      5f1032d2
  5. Jun 06, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1905 · fdd82fe3
      Bram Moolenaar authored
      Problem:    Some compilers can't handle a double semicolon.
      Solution:   Remove one semicolon.
      v7.4.1905
      fdd82fe3
    • Bram Moolenaar's avatar
      patch 7.4.1904 · c60954b4
      Bram Moolenaar authored
      Problem:    Build fails.
      Solution:   Add missing changes.
      v7.4.1904
      c60954b4
    • Bram Moolenaar's avatar
      patch 7.4.1903 · 45d2eeaa
      Bram Moolenaar authored
      Problem:    When writing viminfo merging current history with history in
                  viminfo may drop recent history entries.
      Solution:   Add new format for viminfo lines, use it for history entries.  Use
                  a timestamp for ordering the entries. Add test_settime().
                  Add the viminfo version.  Does not do merging on timestamp yet.
      v7.4.1903
      45d2eeaa
  6. Jun 05, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1902 · bbe8d91e
      Bram Moolenaar authored
      Problem:    No test for collapsing buffers for a channel.  Some text is lost.
      Solution:   Add a simple test.  Set rq_buflen correctly.
      v7.4.1902
      bbe8d91e
  7. Jun 04, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1901 · 762f1754
      Bram Moolenaar authored
      Problem:    Win32: the "Disabled" menu items would appear enabled.
      Solution:   Use submenu_id if there is a parent. (Shane Harper, closes #834)
      v7.4.1901
      762f1754
    • Bram Moolenaar's avatar
      patch 7.4.1900 · 28b942a0
      Bram Moolenaar authored
      Problem:    Using CTRL-] in the help on "{address}." doesn't work.
      Solution:   Recognize an item in {}. (Hirohito Higashi, closes #814)
      v7.4.1900
      28b942a0
    • Bram Moolenaar's avatar
      patch 7.4.1899 · 8e31fd52
      Bram Moolenaar authored
      Problem:    GTK 3: cursor blinking doesn't work well.
      Solution:   Instead of gui_gtk_window_clear() use gui_mch_clear_block().
                  (Kazunobu Kuriyama)
      v7.4.1899
      8e31fd52
    • Bram Moolenaar's avatar
      patch 7.4.1898 · 63a60ded
      Bram Moolenaar authored
      Problem:    User commands don't support modifiers.
      Solution:   Add the <mods> item. (Yegappan Lakshmanan, closes #829)
      v7.4.1898
      63a60ded
    • Bram Moolenaar's avatar
      patch 7.4.1897 · fd89d7ea
      Bram Moolenaar authored
      Problem:    Various typos, long lines and style mistakes.
      Solution:   Fix the typos, wrap lines, improve style.
      v7.4.1897
      fd89d7ea
    • Bram Moolenaar's avatar
      Updated runtime files. · 82af8710
      Bram Moolenaar authored
      82af8710
    • Bram Moolenaar's avatar
      patch 7.4.1896 · 82faa259
      Bram Moolenaar authored
      Problem:    Invoking mark_adjust() when adding a new line below the last line
                  is pointless.
      Solution:   Skip calling mark_adjust() when appending below the last line.
      v7.4.1896
      82faa259
    • Bram Moolenaar's avatar
      patch 7.4.1895 · 888ccac8
      Bram Moolenaar authored
      Problem:    Cannot use a window ID where a window number is expected.
      Solution:   Add LOWEST_WIN_ID, so that the window ID can be used where a
                  number is expected.
      v7.4.1895
      888ccac8
    • Bram Moolenaar's avatar
      patch 7.4.1894 · 511972d8
      Bram Moolenaar authored
      Problem:    Cannot get the window ID for a mouse click.
      Solution:   Add v:mouse_winid.
      v7.4.1894
      511972d8
    • Bram Moolenaar's avatar
      patch 7.4.1893 · b3619a90
      Bram Moolenaar authored
      Problem:    Cannot easily get the window ID for a buffer.
      Solution:   Add bufwinid().
      v7.4.1893
      b3619a90
    • Bram Moolenaar's avatar
      patch 7.4.1892 · c9721bdc
      Bram Moolenaar authored
      Problem:    balloon eval only gets the window number, not the ID.
      Solution:   Add v:beval_winid.
      v7.4.1892
      c9721bdc
    • Bram Moolenaar's avatar
      patch 7.4.1891 · 9ed96efb
      Bram Moolenaar authored
      Problem:    Channel reading very long lines is slow.
      Solution:   Collapse multiple buffers until a NL is found.
      v7.4.1891
      9ed96efb
    • Bram Moolenaar's avatar
      patch 7.4.1890 · 703a8044
      Bram Moolenaar authored
      Problem:    GUI: When channel data is received the cursor blinking is
                  interrupted.  (Ramel Eshed)
      Solution:   Don't update the cursor when it is blinking.
      v7.4.1890
      703a8044
    • Bram Moolenaar's avatar
      patch 7.4.1889 · 35d88f4e
      Bram Moolenaar authored
      Problem:    When umask is set to 0177 Vim can't create temp files. (Lcd)
      Solution:   Also correct umask when using mkdtemp().
      v7.4.1889
      35d88f4e
    • Bram Moolenaar's avatar
      patch 7.4.1888 · 76b6dfe5
      Bram Moolenaar authored
      Problem:    Wrong computation of remaining wait time in RealWaitForChar()
      Solution:   Remember the original waiting time.
      v7.4.1888
      76b6dfe5
    • Bram Moolenaar's avatar
      patch 7.4.1887 · e30a3d01
      Bram Moolenaar authored
      Problem:    When receiving channel data 'updatetime' is not respected.
      Solution:   Recompute the waiting time after being interrupted.
      v7.4.1887
      e30a3d01
    • Bram Moolenaar's avatar
      patch 7.4.1886 · cda7764d
      Bram Moolenaar authored
      Problem:    When waiting for a character is interrupted by receiving channel
                  data and the first character of a mapping was typed, the mapping
                  times out. (Ramel Eshed)
      Solution:   When dealing with channel data don't return from mch_inchar().
      v7.4.1886
      cda7764d
  8. Jun 03, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1885 · 1aa07bde
      Bram Moolenaar authored
      Problem:    MinGW console build defaults to not having +channel.
      Solution:   Include the channel feature if building with huge features. (Ken
                  Takata)
      v7.4.1885
      1aa07bde
    • Bram Moolenaar's avatar
      patch 7.4.1884 · 2f095a4b
      Bram Moolenaar authored
      Problem:    Updating marks in a quickfix list is very slow when the list is
                  long.
      Solution:   Only update marks if the buffer has a quickfix entry.
      v7.4.1884
      2f095a4b
  9. Jun 02, 2016
    • Bram Moolenaar's avatar
      patch 7.4.1883 · ea034590
      Bram Moolenaar authored
      Problem:    Cppcheck found 2 incorrect printf formats.
      Solution:   Use %ld and %lx. (Dominique Pelle)
      v7.4.1883
      ea034590
    • Bram Moolenaar's avatar
      patch 7.4.1882 · b37662a0
      Bram Moolenaar authored
      Problem:    Check for line break at end of line wrong. (Dominique Pelle)
      Solution:   Correct the logic.
      v7.4.1882
      b37662a0
    • Bram Moolenaar's avatar
      patch 7.4.1881 · 83e6d7ac
      Bram Moolenaar authored
      Problem:    Appending to a long quickfix list is slow.
      Solution:   Add qf_last.
      v7.4.1881
      83e6d7ac
    • Bram Moolenaar's avatar
      patch 7.4.1880 · 76929af4
      Bram Moolenaar authored
      Problem:    MS-Windows console build defaults to not having +channel.
      Solution:   Include the channel feature if building with huge features.
      v7.4.1880
      76929af4
    • Bram Moolenaar's avatar
      patch 7.4.1879 · e38a2f7e
      Bram Moolenaar authored
      Problem:    Channel test is flaky.
      Solution:   Wait for close_cb to be invoked.
      v7.4.1879
      e38a2f7e
    • Bram Moolenaar's avatar
      patch 7.4.1878 · cf7c11a9
      Bram Moolenaar authored
      Problem:    Whether a job has exited isn't detected until a character is
                  typed.  After calling exit_cb the cursor is in the wrong place.
      Solution:   Don't wait forever for a character to be typed when there is a
                  pending job.  Update the screen if neede after calling exit_cb.
      v7.4.1878
      cf7c11a9
    • Bram Moolenaar's avatar
      patch 7.4.1877 · 01d46e41
      Bram Moolenaar authored
      Problem:    No test for invoking "close_cb" when writing to a buffer.
      Solution:   Add using close_cb to a test case.
      v7.4.1877
      01d46e41
Loading