Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: micbou/vim

7.4.1817

05 May 01:56

Choose a tag to compare

  • 7.4.1817: The screen is not updated if a callback is invoked when
    closing a channel. Invoke redraw_after_callback().

7.4.1816

02 May 23:55

Choose a tag to compare

  • 7.4.1815: Compiler warnings for unused variables. (Ajit Thakkar) Add a
    dummy initialization. (Yasuhiro Matsumoto)
  • 7.4.1816: Looping over a null list throws an error. Skip over the for
    loop.

7.4.1814

01 May 17:07

Choose a tag to compare

  • 7.4.1812: Failure on startup with Athena and Motif. Check for
    INVALCOLOR. (Kazunobu Kuriyama)
  • 7.4.1813: Memory access error when running test_quickfix. Allocate one
    more byte. (Yegappan Lakshmanan)
  • 7.4.1814: A channel may be garbage collected while it's still being
    used by a job. (James McCoy) Mark the channel as used if the job is
    still used. Do the same for channels that are still used.

7.4.1811

01 May 02:05

Choose a tag to compare

  • 7.4.1798: Still compiler warning for unused return value. (Charles
    Campbell) Assign to ignoredp.
  • 7.4.1799: 'guicolors' is a confusing option name. Use 'termguicolors'
    instead. (Hirohito Higashi)
  • 7.4.1800: Unnecessary #ifdef. Just use USE_24BIT. (Ken Takata)
  • 7.4.1801: Make uninstall leaves file behind. Delete rgb.txt. (Kazunobu
    Kuriyama)
  • 7.4.1802: Quickfix doesn't handle long lines well, they are split.
    Drop characters after a limit. (Anton Lindqvist)
  • 7.4.1803: GTK3 doesn't handle menu separaters properly. Use
    gtk_separator_menu_item_new(). (Kazunobu Kuriyama)
  • 7.4.1804: Can't use Vim as MANPAGER. Add manpager.vim. (Enno Nagel,
    closes vim#491)
  • 7.4.1805: Running tests in shadow dir fails. Link the samples
    directory
  • 7.4.1806: 'termguicolors' option missing from the options window. Add
    the entry.
  • 7.4.1807: Test_out_close_cb sometimes fails. Always write DETACH to
    out, not err.
  • 7.4.1808: Using wrong feature name to check for 'termguicolors'. Use
    the right feature name. (Ken Takata)
  • 7.4.1809: Using wrong short option name for 'termguicolors'. Use the
    option name.
  • 7.4.1810: Sending DETACH after a channel was closed isn't useful. Only
    add DETACH for a netbeans channel.
  • 7.4.1811: Netbeans channel gets garbage collected. Set reference in
    nb_channel.

7.4.1797

29 Apr 01:01

Choose a tag to compare

  • 7.4.1796: Colors are wrong on MS-Windows. (Christian Robinson) Use
    existing RGB macro if it exists. (Ken Takata)
  • 7.4.1797: Warning from Windows 64 bit compiler. Change int to size_t.
    (Mike Williams)

7.4.1795

27 Apr 00:23

Choose a tag to compare

  • 7.4.1787: When a job ends the close callback is invoked before other
    callbacks. On Windows the close callback is not called. First invoke
    out/err callbacks before the close callback. Make the close callback
    work on Windows.
  • 7.4.1788: NSIS script is missing packages. Add the missing
    directories. (Ken Takata)
  • 7.4.1789: Cannot use ch_read() in the close callback. Do not discard
    the channel if there is readahead. Do not discard readahead if there
    is a close callback.
  • 7.4.1790: Leading white space in a job command matters. (Andrew
    Stewart) Skip leading white space.
  • 7.4.1791: Channel could be garbage collected too early. Don't free a
    channel or remove it from a job when it is still useful.
  • 7.4.1792: Color name decoding is implemented several times. Move it to
    term.c. (Christian Brabandt)
  • 7.4.1793: Some character classes may differ between systems. On OS/X
    the regexp test fails. Make this less dependent on the system. (idea
    by Kazunobu Kuriyama)
  • 7.4.1794: Can't build on MS-Windows. Add missing declaration.
  • 7.4.1795: Compiler warning for redefining RGB. (John Marriott) Rename
    it to TORGB.

7.4.1786

24 Apr 22:25

Choose a tag to compare

  • 7.4.1779: Using negative index in strcharpart(). (Yegappan Lakshmanan)
    Assume single byte when using a negative iindex.
  • 7.4.1780: Warnings reported by cppcheck. Fix the warnings. (Dominique
    Pelle)
  • 7.4.1781: synIDattr() does not respect 'guicolors'. Change the
    conditition for the mode. (Christian Brabandt)
  • 7.4.1782: strcharpart() does not work properly with some multi-byte
    characters. Use mb_cptr2len() instead of mb_char2len(). (Hirohito
    Higashi)
  • 7.4.1783: The old regexp engine doesn't handle character classes
    correctly. (Manuel Ortega) Use regmbc() instead of regc(). Add a test.
  • 7.4.1784: The termtruecolor feature is enabled differently from many
    other features. Enable the termtruecolor feature for the big build,
    not through configure.
  • 7.4.1785: Regexp test fails on windows. set 'isprint' to the right
    value for testing.
  • 7.4.1786: Compiled-in colors do not match rgb.txt. Use the rgb.txt
    colors. (Kazunobu Kuriyama)

7.4.1778

22 Apr 23:52

Choose a tag to compare

  • 7.4.1771: Warning for unused variable. Add #ifdef. (John Marriott)
  • 7.4.1772: Installation fails when $GTK_UPDATE_ICON_CACHE is empty. Add
    quotes. (Kazunobu Kuriyama)
  • 7.4.1773: Compiler warnings. (Dominique Pelle) Add UNUSED. Add type
    cast. Avoid a buffer overflow.
  • 7.4.1774: Cterm true color feature has warnings. Add type casts.
  • 7.4.1775: The rgb.txt file is not installed. Install the file.
    (Christian Brabandt)
  • 7.4.1776: Using wrong buffer length. use the right name. (Kazunobu
    Kuriyama)
  • 7.4.1777: Newly added features can escape the sandbox. Add checks for
    restricted and secure. (Yasuhiro Matsumoto)
  • 7.4.1778: When using the term truecolor feature, the t_8f and t_8b
    termcap options are not set by default. Move the values to before
    BT_EXTRA_KEYS. (Christian Brabandt)

7.4.1770

22 Apr 00:08

Choose a tag to compare

  • 7.4.1761: Coverity complains about ignoring return value. Add "(void)"
    to get rid of the warning.
  • 7.4.1762: Coverity: useless assignments. Remove them.
  • 7.4.1763: Coverity: useless assignment. Add #if 0.
  • 7.4.1765: Undo options are not together in the options window. Put
    them together. (Gary Johnson)
  • 7.4.1766: Building instructions for MS-Windows are outdated. Mention
    setting SDK_INCLUDE_DIR. (Ben Franklin, closes vim#771) Move outdated
    instructions further down.
  • 7.4.1767: When installing Vim on a GTK system the icon cache is not
    updated. Update the GTK icon cache when possible. (Kazunobu Kuriyama)
  • 7.4.1768: Arguments of setqflist() are not checked properly. Add
    better checks, add a test. (Nikolai Pavlov, Hirohito Higashi, closes
    vim#661)
  • 7.4.1769: No "closed", "errors" and "encoding" attribute on Python
    output. Add attributes and more tests. (Roland Puntaier, closes vim#622)
  • 7.4.1770: Cannot use true color in the terminal. Add the 'guicolors'
    option. (Nikolai Pavlov)

7.4.1760

20 Apr 23:07

Choose a tag to compare

  • 7.4.1753: "noinsert" in 'completeopt' is sometimes ignored. Set the
    variables when the 'completeopt' was set. (Ozaki Kiichi)
  • 7.4.1754: When 'filetype' was set and reloading a buffer which does
    not cause it to be set, the syntax isn't loaded. (KillTheMule)
    Remember whether the FileType event was fired and fire it if not.
    (Anton Lindqvist, closes vim#747)
  • 7.4.1755: When using getreg() on a non-existing register a NULL list
    is returned. (Bjorn Linse) Allocate an empty list. Add a test.
  • 7.4.1756: "dll" options are not expanded. Expand environment
    variables. (Ozaki Kiichi)
  • 7.4.1757: When using complete() it may set 'modified' even though
    nothing was inserted. Use Down/Up instead of Next/Previous match.
    (Shougo, closes vim#745)
  • 7.4.1758: Triggering CursorHoldI when in CTRL-X mode causes problems.
    Do not trigger CursorHoldI in CTRL-X mode. Add "!" flag to feedkeys()
    (test with that didn't work though).
  • 7.4.1759: When using feedkeys() in a timer the inserted characters are
    not used right away. Break the wait loop when characters have been
    added to typebuf. use this for testing CursorHoldI.
  • 7.4.1760: Compiler warning for unused variable. Add #ifdef. (John
    Marriott)