summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
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
2015-09-25patch 7.4.874v7.4.874Bram Moolenaar
Problem: MS-Windows: When Vim runs inside another application, the size isn't right. Solution: When in child mode compute the size differently. (Agorgianitis Loukas)
2015-09-17patch 7.4.873v7.4.873Bram Moolenaar
Problem: Compiler warning for unused variable. (Tony Mechelynck) Solution: Remove the variable. Also fix int vs long_u mixup.
2015-09-15patch 7.4.872v7.4.872Bram Moolenaar
Problem: Not using CI services available. Solution: Add configuration files for travis and appveyor. (PR #401)
2015-09-15patch 7.4.871v7.4.871Bram Moolenaar
Problem: Vim leaks memory, when 'wildignore' filters out all matches. Solution: Free the files array when it becomes empty.
2015-09-15patch 7.4.870v7.4.870Bram Moolenaar
Problem: May get into an invalid state when using getchar() in an expression mapping. Solution: Anticipate mod_mask to change. (idea by Yukihiro Nakadaira)
2015-09-15patch 7.4.869v7.4.869Bram Moolenaar
Problem: MS-Windows: scrolling may cause text to disappear when using an Intel GPU. Solution: Call GetPixel(). (Yohei Endo)
2015-09-15patch 7.4.868v7.4.868Bram Moolenaar
Problem: 'smarttab' is also effective when 'paste' is enabled. (Alexander Monakov) Solution: Disable 'smarttab' when 'paste' is set. (Christian Brabandt) Do the same for 'expandtab'.
2015-09-15patch 7.4.867v7.4.867Bram Moolenaar
Problem: Can't build on MS-Windows. (Taro Muraoka) Solution: Adjust #ifdef.
2015-09-15patch 7.4.866v7.4.866Bram Moolenaar
Problem: Crash when changing the 'tags' option from a remote command. (Benjamin Fritz) Solution: Instead of executing messages immediately, use a queue, like for netbeans. (James Kolb)
2015-09-09patch 7.4.865v7.4.865Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Initialize.
2015-09-09patch 7.4.864v7.4.864Bram Moolenaar
Problem: Tiny build fails. Solution: Put qf_ items inside #ifdef.
2015-09-09patch 7.4.863v7.4.863Bram Moolenaar
Problem: plines_nofill() used without the diff feature. Solution: Define PLINES_NOFILL().
2015-09-09patch 7.4.862v7.4.862Bram Moolenaar
Problem: Still problems with pango_shape_full() not available. Solution: Change AC_TRY_COMPILE to AC_TRY_LINK.
2015-09-08patch 7.4.861v7.4.861Bram Moolenaar
Problem: pango_shape_full() is not always available. Solution: Add a configure check.
2015-09-08patch 7.4.860v7.4.860Bram Moolenaar
Problem: Filetype detection is outdated. Solution: Include all recent and not-so-recent changes.
2015-09-08patch 7.4.859v7.4.859Bram Moolenaar
Problem: Vim doesn't recognize all htmldjango files. Solution: Recognize a comment. (Daniel Hahler, PR #410)
2015-09-08patch 7.4.858v7.4.858Bram Moolenaar
Problem: It's a bit clumsy to execute a command on a list of matches. Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan Lakshmanan)
2015-09-08patch 7.4.857v7.4.857Bram Moolenaar
Problem: Dragging the current tab with the mouse doesn't work properly. Solution: Take the current tabpage index into account. (Hirohito Higashi)
2015-09-08patch 7.4.856v7.4.856Bram Moolenaar
Problem: "zt" still doesn't work well with filler lines. (Gary Johnson) Solution: Check for filler lines above the cursor. (Christian Brabandt)
2015-09-08patch 7.4.855v7.4.855Bram Moolenaar
Problem: GTK: font glitches for combining characters Solution: Use pango_shape_full() instead of pango_shape(). (luchr, PR #393)
2015-09-01patch 7.4.854v7.4.854Bram Moolenaar
Problem: Missing information about runtime files. Solution: Add section about runtime files. (Christian Brabandt)
2015-09-01patch 7.4.853v7.4.853Bram Moolenaar
Problem: "zt" in diff mode does not always work properly. (Gary Johnson) Solution: Don't count filler lines twice. (Christian Brabandt)
2015-09-01patch 7.4.852v7.4.852Bram Moolenaar
Problem: On MS-Windows console Vim uses ANSI APIs for keyboard input and console output, it cannot input/output Unicode characters. Solution: Use Unicode APIs for console I/O. (Ken Takata, Yasuhiro Matsumoto)
2015-09-01patch 7.4.851v7.4.851Bram Moolenaar
Problem: Saving and restoring the console buffer does not work properly. Solution: Instead of ReadConsoleOutputA/WriteConsoleOutputA use CreateConsoleScreenBuffer and SetConsoleActiveScreenBuffer. (Ken Takata)
2015-09-01patch 7.4.850v7.4.850Bram Moolenaar
Problem: <Esc> does not show up. Solution: Use &gt; and &lt;. (Kazunobu Kuriyama)
2015-09-01patch 7.4.849v7.4.849Bram Moolenaar
Problem: Moving the cursor in Insert mode starts new undo sequence. Solution: Add CTRL-G U to keep the undo sequence for the following cursor movement command. (Christian Brabandt)
2015-09-01patch 7.4.848v7.4.848Bram Moolenaar
Problem: CTRL-A on hex number in Visual block mode is incorrect. Solution: Account for the "0x". (Hirohito Higashi)
2015-09-01patch 7.4.847v7.4.847Bram Moolenaar
Problem: "vi)d" may leave a character behind. Solution: Skip over multi-byte character. (Christian Brabandt)
2015-09-01patch 7.4.846v7.4.846Bram Moolenaar
Problem: Some GitHub users don't know how to use issues. Solution: Add a file that explains the basics of contributing.
2015-09-01patch 7.4.845v7.4.845Bram Moolenaar
Problem: Compiler warning for possible loss of data. Solution: Add a type cast. (Erich Ritz)
2015-09-01patch 7.4.844v7.4.844Bram Moolenaar
Problem: When '#' is in 'isident' the is# comparator doesn't work. Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto)
2015-08-27patch 7.4.843v7.4.843Bram Moolenaar
Problem: Still possible to go beyond the end of a string. Solution: Check for NUL also in second string. (Dominique Pelle)
2015-08-27patch 7.4.842v7.4.842Bram Moolenaar
Problem: Sending too many messages to close the balloon. Solution: Only send a WM_CLOSE message. (Jurgen Kramer)
2015-08-26patch 7.4.841v7.4.841Bram Moolenaar
Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add more #ifdef's.
2015-08-26patch 7.4.840v7.4.840Bram Moolenaar
Problem: Tooltip window stays open. Solution: Send a WM_CLOSE message. (Jurgen Kramer)
2015-08-26patch 7.4.839v7.4.839Bram Moolenaar
Problem: Compiler warning on 64-bit system. Solution: Add cast to int. (Mike Williams)
2015-08-25patch 7.4.838v7.4.838Bram Moolenaar
Problem: Can't compile without the crypt feature. (John Marriott) Solution: Add #ifdef.
2015-08-25Updated runtime files and Italian messages.Bram Moolenaar
2015-08-25patch 7.4.837v7.4.837Bram Moolenaar
Problem: Compiler warning with MSVC compiler when using +sniff. Solution: Use Sleep() instead of _sleep(). (Tux)
2015-08-25patch 7.4.836v7.4.836Bram Moolenaar
Problem: Accessing unitinialized memory. Solution: Add missing calls to init_tv(). (Dominique Pelle)
2015-08-25patch 7.4.835v7.4.835Bram Moolenaar
Problem: Comparing utf-8 sequences does not handle different byte sizes correctly. Solution: Get the byte size of each character. (Dominique Pelle)
2015-08-25patch 7.4.834v7.4.834Bram Moolenaar
Problem: gettabvar() doesn't work after Vim start. (Szymon Wrozynski) Solution: Handle first window in tab still being NULL. (Christian Brabandt)
2015-08-25patch 7.4.833v7.4.833Bram Moolenaar
Problem: More side effects of ":set all&" are missing. (Björn Linse) Solution: Call didset_options() and add didset_options2() to collect more side effects to take care of. Still not everything...
2015-08-25patch 7.4.832v7.4.832Bram Moolenaar
Problem: $HOME in is expanded too early. Solution: Skip over when expanding environment names.