- Sep 29, 2015
-
-
Bram Moolenaar authored
Problem: The OptionSet autocommands are not triggered from setwinvar(). Solution: Do not use switch_win() when not needed. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Using uninitialized memory for regexp with back reference. (Dominique Pelle) Solution: Initialize end_lnum.
-
Bram Moolenaar authored
Problem: Windows7: Switching screen buffer causes flicker when using system(). Solution: Instead of actually switching screen buffer, duplicate the handle. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
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)
-
- Sep 25, 2015
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Travis also builds on a tag push. Solution: Filter out tag pushes. (Kenichi Ito)
-
Bram Moolenaar authored
Problem: Block-mode replace works characterwise instead of blockwise after column 147. (Issue #422) Solution: Set Visual mode. (Christian Brabandt)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Test 49 fails. Solution: Add line number to check of call stack.
-
Bram Moolenaar authored
Problem: No build and coverage status. Solution: Add links to the README file. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Can't see line numbers in nested function calls. Solution: Add line number to the file name. (Alberto Fanjul)
-
Bram Moolenaar authored
Problem: Coverity error for clearing only one byte of struct. Solution: Clear the whole struct. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: ":find" sometimes fails. (Excanoe) Solution: Compare current characters instead of previous ones.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Not obvious how to contribute. Solution: Add a remark about CONTRIBUTING.md to README.md
-
Bram Moolenaar authored
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)
-
- Sep 17, 2015
-
-
Bram Moolenaar authored
Problem: Compiler warning for unused variable. (Tony Mechelynck) Solution: Remove the variable. Also fix int vs long_u mixup.
-
- Sep 15, 2015
-
-
Bram Moolenaar authored
Problem: Not using CI services available. Solution: Add configuration files for travis and appveyor. (PR #401)
-
Bram Moolenaar authored
Problem: Vim leaks memory, when 'wildignore' filters out all matches. Solution: Free the files array when it becomes empty.
-
Bram Moolenaar authored
Problem: May get into an invalid state when using getchar() in an expression mapping. Solution: Anticipate mod_mask to change. (idea by Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: MS-Windows: scrolling may cause text to disappear when using an Intel GPU. Solution: Call GetPixel(). (Yohei Endo)
-
Bram Moolenaar authored
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'.
-
Bram Moolenaar authored
Problem: Can't build on MS-Windows. (Taro Muraoka) Solution: Adjust #ifdef.
-
Bram Moolenaar authored
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)
-
- Sep 09, 2015
-
-
Bram Moolenaar authored
Problem: Compiler warning for uninitialized variable. Solution: Initialize.
-
Bram Moolenaar authored
Problem: Tiny build fails. Solution: Put qf_ items inside #ifdef.
-
Bram Moolenaar authored
Problem: plines_nofill() used without the diff feature. Solution: Define PLINES_NOFILL().
-
Bram Moolenaar authored
Problem: Still problems with pango_shape_full() not available. Solution: Change AC_TRY_COMPILE to AC_TRY_LINK.
-
- Sep 08, 2015
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: pango_shape_full() is not always available. Solution: Add a configure check.
-
Bram Moolenaar authored
Problem: Filetype detection is outdated. Solution: Include all recent and not-so-recent changes.
-
Bram Moolenaar authored
Problem: Vim doesn't recognize all htmldjango files. Solution: Recognize a comment. (Daniel Hahler, PR #410)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Dragging the current tab with the mouse doesn't work properly. Solution: Take the current tabpage index into account. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: "zt" still doesn't work well with filler lines. (Gary Johnson) Solution: Check for filler lines above the cursor. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: GTK: font glitches for combining characters Solution: Use pango_shape_full() instead of pango_shape(). (luchr, PR #393)
-
- Sep 01, 2015
-
-
Bram Moolenaar authored
Problem: Missing information about runtime files. Solution: Add section about runtime files. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: "zt" in diff mode does not always work properly. (Gary Johnson) Solution: Don't count filler lines twice. (Christian Brabandt)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Saving and restoring the console buffer does not work properly. Solution: Instead of ReadConsoleOutputA/WriteConsoleOutputA use CreateConsoleScreenBuffer and SetConsoleActiveScreenBuffer. (Ken Takata)
-