summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-12-01patch 7.4.947Bram Moolenaar
Problem: Test_listchars fails with MingW. (Michael Soyka) Solution: Add the test to the ones that need the fileformat fixed. (Christian Brabandt)
2015-12-01patch 7.4.946Bram Moolenaar
Problem: Missing changes in source file. Solution: Include changes to the eval.c file.
2015-11-30patch 7.4.945Bram Moolenaar
Problem: New style testing is incomplete. Solution: Add the runtest script to the list of distributed files. Add the new functions to the function overview. Rename the functions to match Vim function style. Move undolevels testing into a new style test script.
2015-11-29patch 7.4.944Bram Moolenaar
Problem: Writing tests for Vim script is hard. Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add the v:errors variable. Add the runtest script. Add a first new style test script.
2015-11-28patch 7.4.943Bram Moolenaar
Problem: Tests are not run. Solution: Add test_writefile to makefiles. (Ken Takata)
2015-11-25patch 7.4.942Bram Moolenaar
Problem: test_tagcase breaks for small builds. Solution: Bail out of the test early. (Hirohito Higashi)
2015-11-24patch 7.4.941Bram Moolenaar
Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
2015-11-24patch 7.4.940Bram Moolenaar
Problem: vt52 terminal codes are not correct. Solution: Move entries outside of #if. (Random) Adjustments based on documented codes.
2015-11-24patch 7.4.939Bram Moolenaar
Problem: Memory leak when encountering a syntax error. Solution: Free the memory. (Dominique Pelle)
2015-11-24patch 7.4.938Bram Moolenaar
Problem: X11 and GTK have moure mouse buttons than Vim supports. Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498)
2015-11-24patch 7.4.937Bram Moolenaar
Problem: Segfault reading unitialized memory. Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes #497)
2015-11-22patch 7.4.936Bram Moolenaar
Problem: Crash when dragging with the mouse. Solution: Add safety check for NULL pointer. Check mouse position for valid value. (Hirohito Higashi)
2015-11-22patch 7.4.935Bram Moolenaar
Problem: test_utf8 fails on MS-Windows when executed with gvim. Solution: Use the insert flag on feedkeys() to put the string before the ":" that was already read when checking for available chars.
2015-11-21patch 7.4.934Bram Moolenaar
Problem: Appveyor also builds on a tag push. Solution: Add a skip_tags line. (Kenichi Ito, closes #489)
2015-11-21patch 7.4.933Bram Moolenaar
Problem: Crash when using longest completion match. Solution: Fix array index.
2015-11-21patch 7.4.932Bram Moolenaar
Problem: test_utf8 has confusing dummy command. Solution: Use a real command instead of a colon.
2015-11-21patch 7.4.931Bram Moolenaar
Problem: Test 94 fails on some systems. Solution: Set 'encoding' to utf-8.
2015-11-19patch 7.4.930Bram Moolenaar
Problem: MS-Windows: Most users appear not to like the window border. Solution: Remove WS_EX_CLIENTEDGE. (Ian Halliday)
2015-11-19patch 7.4.929Bram Moolenaar
Problem: "gv" after paste selects one character less if 'selection' is "exclusive". Solution: Increment the end position. (Christian Brabandt)
2015-11-19patch 7.4.928Bram Moolenaar
Problem: A clientserver message interrupts handling keys of a mapping. Solution: Have mch_inchar() send control back to WaitForChar when it is interrupted by server message. (James Kolb)
2015-11-19patch 7.4.927Bram Moolenaar
Problem: Ruby crashes when there is a runtime error. Solution: Use ruby_options() instead of ruby_process_options(). (Damien)
2015-11-19patch 7.4.926Bram Moolenaar
Problem: Completing the longest match doesn't work properly with multi-byte characters. Solution: When using multi-byte characters use another way to find the longest match. (Hirohito Higashi)
2015-11-19patch 7.4.925Bram Moolenaar
Problem: User may yank or put using the register being recorded in. Solution: Add the recording register in the message. (Christian Brabandt, closes #470)
2015-11-19patch 7.4.924Bram Moolenaar
Problem: DEVELOPER_DIR gets reset by configure. Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir argument. (Kazuki Sakamoto, closes #482)
2015-11-19patch 7.4.923Bram Moolenaar
Problem: Prototypes not always generated. Solution: Change #if to OR with PROTO.
2015-11-10patch 7.4.922Bram Moolenaar
Problem: Leaking memory with ":helpt {dir-not-exists}". Solution: Free dirname. (Dominique Pelle)
2015-11-10patch 7.4.921Bram Moolenaar
Problem: Missing proto file update. (Randall W. Morris) Solution: Add the missing line for mch_ishidden.
2015-11-10patch 7.4.920Bram Moolenaar
Problem: The rubydll option is not in the options window. Solution: Add the rubydll option.
2015-11-10patch 7.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.918Bram Moolenaar
Problem: A digit in an option name has problems. Solution: Rename 'python3dll' to 'pythonthreedll'.
2015-11-10patch 7.4.917Bram Moolenaar
Problem: Compiler warning for comparing signed and unsigned. Solution: Add a type cast.
2015-11-10patch 7.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.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.914Bram Moolenaar
Problem: New compiler warning: logical-not-parentheses Solution: Silence the warning.
2015-11-10patch 7.4.913Bram Moolenaar
Problem: No utf-8 support for the hangul input feature. Solution: Add utf-8 support. (Namsh)
2015-11-10patch 7.4.912Bram Moolenaar
Problem: Wrong indenting for C++ constructor. Solution: Recognize ::. (Anhong)
2015-11-10patch 7.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.910Bram Moolenaar
Problem: Compiler complains about type punned pointer. Solution: Use another way to increment the ref count.
2015-11-03patch 7.4.909Bram Moolenaar
Problem: "make install" fails. Solution: Only try installing desktop files if the destination directory exists.
2015-11-02patch 7.4.908Bram Moolenaar
Problem: Build error with MingW compiler. (Cesar Romani) Solution: Change #if into #ifdef.
2015-11-02patch 7.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.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-02patch 7.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.904Bram Moolenaar
Problem: Vim does not provide .desktop files. Solution: Include and install .desktop files. (James McCoy, closes #455)
2015-10-31patch 7.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.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-30patch 7.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.900Bram Moolenaar
Problem: README file can still be improved Solution: Add a couple of links. (Christian Brabandt)
2015-10-25patch 7.4.899Bram Moolenaar
Problem: README file is not optimal. Solution: Move buttons, update some text. (closes #460)
2015-10-13patch 7.4.898Bram Moolenaar
Problem: The 'fixendofline' option is set on with ":edit". Solution: Don't set the option when clearing a buffer. (Yasuhiro Matsumoto)