summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-11-10patch 7.4.919v7.4.919Bram Moolenaar
Problem: The dll options are not in the options window. Solution: Add the dll options. And other fixes.
2015-11-10patch 7.4.918v7.4.918Bram Moolenaar
Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
2015-11-10patch 7.4.917v7.4.917Bram Moolenaar
Problem: Compiler warning for comparing signed and unsigned. Solution: Add a type cast.
2015-11-10patch 7.4.916v7.4.916Bram Moolenaar
Problem: When running out of memory while copying a dict memory may be freed twice. (ZyX) Solution: Do not call the garbage collector when running out of memory.
2015-11-10patch 7.4.915v7.4.915Bram Moolenaar
Problem: When removing from 'path' and then adding, a comma may go missing. (Malcolm Rowe) Solution: Fix the check for P_ONECOMMA. (closes #471)
2015-11-10patch 7.4.914v7.4.914Bram Moolenaar
Problem: New compiler warning: logical-not-parentheses Solution: Silence the warning.
2015-11-10patch 7.4.913v7.4.913Bram Moolenaar
Problem: No utf-8 support for the hangul input feature. Solution: Add utf-8 support. (Namsh)
2015-11-10patch 7.4.912v7.4.912Bram Moolenaar
Problem: Wrong indenting for C++ constructor. Solution: Recognize ::. (Anhong)
2015-11-10patch 7.4.911v7.4.911Bram Moolenaar
Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi) Solution: Define the options.
2015-11-10patch 7.4.910v7.4.910Bram Moolenaar
Problem: Compiler complains about type punned pointer. Solution: Use another way to increment the ref count.
2015-11-03patch 7.4.909v7.4.909Bram Moolenaar
Problem: "make install" fails. Solution: Only try installing desktop files if the destination directory exists.
2015-11-02patch 7.4.908v7.4.908Bram Moolenaar
Problem: Build error with MingW compiler. (Cesar Romani) Solution: Change #if into #ifdef.
2015-11-02patch 7.4.907v7.4.907Bram Moolenaar
Problem: Libraries for dynamically loading interfaces can only be defined at compile time. Solution: Add options to specify the dll names. (Kazuki Sakamoto, closes #452)
2015-11-02patch 7.4.906v7.4.906Bram Moolenaar
Problem: On MS-Windows the viminfo file is (always) given the hidden attribute. (raulnac) Solution: Check the hidden attribute in a different way. (Ken Takata)
2015-11-02Add files in patch 7.4.904 missing from commit.Bram Moolenaar
2015-11-02patch 7.4.905v7.4.905Bram Moolenaar
Problem: Python interface can produce error "vim.message' object has no attribute 'isatty'". Solution: Add dummy isatty(), readable(), etc. (closes #464)
2015-11-02patch 7.4.904v7.4.904Bram Moolenaar
Problem: Vim does not provide .desktop files. Solution: Include and install .desktop files. (James McCoy, closes #455)
2015-11-01Updated runtime files.Bram Moolenaar
2015-10-31patch 7.4.903v7.4.903Bram Moolenaar
Problem: MS-Windows: When 'encoding' differs from the current code page, expandinig wildcards may cause illegal memory access. Solution: Allocate a longer buffer. (Ken Takata)
2015-10-30patch 7.4.902v7.4.902Bram Moolenaar
Problem: Problems with using the MS-Windows console. Solution: Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better solution. (suggested by Ken Takata)
2015-10-30Update runtime files.Bram Moolenaar
2015-10-30patch 7.4.901v7.4.901Bram Moolenaar
Problem: When a BufLeave autocommand changes folding in a way it syncs undo, undo can be corrupted. Solution: Prevent undo sync. (Jacob Niehus)
2015-10-25patch 7.4.900v7.4.900Bram Moolenaar
Problem: README file can still be improved Solution: Add a couple of links. (Christian Brabandt)
2015-10-25patch 7.4.899v7.4.899Bram Moolenaar
Problem: README file is not optimal. Solution: Move buttons, update some text. (closes #460)
2015-10-13Update runtime files.Bram Moolenaar
2015-10-13patch 7.4.898v7.4.898Bram Moolenaar
Problem: The 'fixendofline' option is set on with ":edit". Solution: Don't set the option when clearing a buffer. (Yasuhiro Matsumoto)
2015-10-13patch 7.4.897v7.4.897Bram Moolenaar
Problem: Freeze and crash when there is a sleep in a remote command. (Karl Yngve LervÄg) Solution: Remove a message from the queue before dealing with it. (James Kolb)
2015-10-13patch 7.4.896v7.4.896Bram Moolenaar
Problem: Editing a URL, which netrw should handle, doesn't work. Solution: Avoid changing slashes to backslashes. (Yasuhiro Matsumoto)
2015-10-13patch 7.4.895v7.4.895Bram Moolenaar
Problem: Custom command line completion does not work for a command containing digits. Solution: Skip over the digits. (suggested by Yasuhiro Matsumoto)
2015-10-13patch 7.4.894v7.4.894Bram Moolenaar
Problem: vimrun.exe is picky about the number of spaces before -s. Solution: Skip all spaces. (Cam Sinclair)
2015-10-13patch 7.4.893v7.4.893Bram Moolenaar
Problem: C indenting is wrong below a "case (foo):" because it is recognized as a C++ base class construct. Issue #38. Solution: Check for the case keyword.
2015-10-13patch 7.4.892v7.4.892Bram Moolenaar
Problem: On MS-Windows the iconv DLL may have a different name. Solution: Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto)
2015-10-07patch 7.4.891v7.4.891Bram Moolenaar
Problem: Indentation of array initializer is wrong. Solution: Avoid that calling find_start_rawstring() changes the position returned by find_start_comment(), add a test. (Hirohito Higashi)
2015-10-07patch 7.4.890v7.4.890Bram Moolenaar
Problem: Build failure when using dynamic python but not python3. Solution: Adjust the #if to also include DYNAMIC_PYTHON3 and UNIX.
2015-09-29patch 7.4.889v7.4.889Bram Moolenaar
Problem: Triggering OptionSet from setwinvar() isn't tested. Solution: Add a test. (Christian Brabandt)
2015-09-29patch 7.4.888v7.4.888Bram Moolenaar
Problem: The OptionSet autocommands are not triggered from setwinvar(). Solution: Do not use switch_win() when not needed. (Hirohito Higashi)
2015-09-29patch 7.4.887v7.4.887Bram Moolenaar
Problem: Using uninitialized memory for regexp with back reference. (Dominique Pelle) Solution: Initialize end_lnum.
2015-09-29patch 7.4.886v7.4.886Bram Moolenaar
Problem: Windows7: Switching screen buffer causes flicker when using system(). Solution: Instead of actually switching screen buffer, duplicate the handle. (Yasuhiro Matsumoto)
2015-09-29patch 7.4.885v7.4.885Bram Moolenaar
Problem: When doing an upwards search without wildcards the search fails if the initial directory doesn't exist. Solution: Fix the non-wildcard case. (Stefan Kempf)
2015-09-25Update various runtime files.Bram Moolenaar
2015-09-25patch 7.4.884v7.4.884Bram Moolenaar
Problem: Travis also builds on a tag push. Solution: Filter out tag pushes. (Kenichi Ito)
2015-09-25patch 7.4.883v7.4.883Bram Moolenaar
Problem: Block-mode replace works characterwise instead of blockwise after column 147. (Issue #422) Solution: Set Visual mode. (Christian Brabandt)
2015-09-25patch 7.4.882v7.4.882Bram Moolenaar
Problem: When leaving the command line window with CTRL-C while a completion menu is displayed the menu isn't removed. Solution: Force a screen update. (Hirohito Higashi)
2015-09-25patch 7.4.881v7.4.881Bram Moolenaar
Problem: Test 49 fails. Solution: Add line number to check of call stack.
2015-09-25patch 7.4.880v7.4.880Bram Moolenaar
Problem: No build and coverage status. Solution: Add links to the README file. (Christian Brabandt)
2015-09-25patch 7.4.879v7.4.879Bram Moolenaar
Problem: Can't see line numbers in nested function calls. Solution: Add line number to the file name. (Alberto Fanjul)
2015-09-25patch 7.4.878v7.4.878Bram Moolenaar
Problem: Coverity error for clearing only one byte of struct. Solution: Clear the whole struct. (Dominique Pelle)
2015-09-25patch 7.4.877v7.4.877Bram Moolenaar
Problem: ":find" sometimes fails. (Excanoe) Solution: Compare current characters instead of previous ones.
2015-09-25patch 7.4.876v7.4.876Bram Moolenaar
Problem: Windows7: when using vim.exe with msys or msys2, conhost.exe (console window provider on Windows7) will freeze or crash. Solution: Make original screen buffer active, before executing external program. And when the program is finished, revert to vim's one. (Taro Muraoka)
2015-09-25patch 7.4.875v7.4.875Bram Moolenaar
Problem: Not obvious how to contribute. Solution: Add a remark about CONTRIBUTING.md to README.md