- Dec 02, 2017
-
-
Bram Moolenaar authored
Problem: There is no easy way to get the window position. Solution: Add win_screenpos().
-
Bram Moolenaar authored
Problem: Recovering does not work when swap file ends in .stz. Solution: Check for all possible swap file names. (Elfling, closes #2395, closes #2396)
-
- Dec 01, 2017
-
-
Bram Moolenaar authored
Problem: Terminal window colors wrong when using Terminal highlighting. Solution: Set ansi_index when setting the default color. Also cache the color index for Terminal. (Ozaki Kiichi, closes #2393)
-
Bram Moolenaar authored
Problem: Some users don't want to diff with hidden buffers. Solution: Add the "hiddenoff" item to 'diffopt'. (Alisue, closes #2394)
-
- Nov 30, 2017
-
-
Bram Moolenaar authored
Problem: The Terminal highlighting doesn't work in a terminal. (Ozaki Kiichi) Solution: Use the Terminal highlighting when the cterm index is zero.
-
Bram Moolenaar authored
-
- Nov 29, 2017
-
-
Bram Moolenaar authored
Problem: Libvterm ANSI colors can not always be recognized from the RGB values. The default color is wrong when t_RB is empty. Solution: Add the ANSI color index to VTermColor.
-
- Nov 28, 2017
-
-
Bram Moolenaar authored
Problem: Undercurl is not used in the terminal. (Kovid Goyal) Solution: Only fall back to underline when undercurl highlighting is not defined. (closes #1306)
-
Bram Moolenaar authored
Problem: Startup test fails on OpenBSD. (Edd Barrett) Solution: Check for "BSD" instead of "FreeBSD" being defined. (James McCoy, closes #2376, closes #2378)
-
Bram Moolenaar authored
Problem: Using simalt in a GUIEnter autocommand inserts strange characters. (Chih-Long Chang) Solution: Ignore K_NOP in Insert mode. (closes #2379)
-
Bram Moolenaar authored
Problem: Cursor keys don't work in MS-Windows console. Solution: Revert the previous patch. Also delete dead code.
-
Bram Moolenaar authored
Problem: Shift-Insert doesn't always work in MS-Windows console. Solution: Handle K_NUL differently. (Yasuhiro Matsumoto, closes #2381)
-
Bram Moolenaar authored
Problem: QuickFixCmdPost is not used consistently. Solution: Invoke QuickFixCmdPost consistently after QuickFixCmdPre. (Yegappan Lakshmanan, closes #2377)
-
Bram Moolenaar authored
Problem: Dead URLs in the help go unnoticed. Solution: Add a script to check URLs in the help files. (Christian Brabandt)
-
- Nov 27, 2017
-
-
Bram Moolenaar authored
Problem: Warning for unused variables building with MinGW. Solution: Change a few #ifdefs (suggested by John Marriott). Remove superfluous checks of FEAT_MBYTE.
-
Bram Moolenaar authored
Problem: Cannot build with +eval and -multi_byte. Solution: Adjust #ifdefs. (John Marriott) Always include the multi_byte feature when an input method feature is enabled.
-
- Nov 26, 2017
-
-
Bram Moolenaar authored
Problem: Options test fails when using Motif or GTK GUI. Solution: Use "fixed" instead of "fixedsys" for Unix. Don't try "xxx" for guifonteset. Don't set 'termencoding' to anything but "utf-8" for GTK. Give an error if 'termencoding' can't be converted.
-
Bram Moolenaar authored
Problem: Make testclean deletes script file on MS-Windows. Solution: Rename file to avoid it starting with an "x".
-
Bram Moolenaar authored
Problem: MS-Windows: build broken by misplaced curly. Solution: Move curly after #endif
-
Bram Moolenaar authored
Problem: Crash when passing 50 char string to balloon_split(). Solution: Fix off-by-one error.
-
Bram Moolenaar authored
Problem: Race condition between stat() and open() for the viminfo temp file. (Simon Ruderich) Solution: use open() with O_EXCL to atomically check if the file exists. Don't try using a temp file, renaming it will fail anyway.
-
Bram Moolenaar authored
Problem: Using 'imactivatefunc' in the GUI does not work. Solution: Do not use 'imactivatefunc' and 'imstatusfunc' in the GUI.
-
Bram Moolenaar authored
Problem: MS-Windows: does not show colored emojis. Solution: Implement colored emojis. Improve drawing speed. Make 'taamode' work. (Taro Muraoka, Yasuhiro Matsumoto, Ken Takata, close #2375)
-
- Nov 25, 2017
-
-
Bram Moolenaar authored
Problem: Cannot build with Motif and multi-byte. (Mohamed Boughaba) Solution: Use the right input method status flag. (closes #2374)
-
Bram Moolenaar authored
Problem: 'imactivatefunc' test fails on MS-Windows. Solution: Skip the text.
-
Bram Moolenaar authored
Problem: MS-Windows: cannot build GUI without IME. Solution: Define im_get_status() and im_set_active() when IME is not used.
-
Bram Moolenaar authored
Problem: No test for what 8.0.1335 fixes. Solution: Add a test. (Yasuhiro Matsumoto, closes #2373)
-
Bram Moolenaar authored
Problem: USE_IM_CONTROL is confusing and incomplete. Solution: Just use FEAT_MBYTE. Call 'imactivatefunc' also without GUI.
-
Bram Moolenaar authored
Problem: Typo in #ifdef. Solution: Fix the #if line.
-
Bram Moolenaar authored
Problem: Cannot use imactivatefunc() unless compiled with +xim. Solution: Allow using imactivatefunc() when not compiled with +xim. (Yasuhiro Matsumoto, closes #2349)
-
Bram Moolenaar authored
Problem: Writefile() using fsync() may give an error for a device. (Yasuhiro Matsumoto) Solution: Ignore fsync() failing. (closes #2373)
-
Bram Moolenaar authored
Problem: Splitting a window with a WinBar damages window layout. (Lifepillar) Solution: Take the winbar into account when computing the new window position. Add WINBAR_HEIGHT().
-
- Nov 23, 2017
-
-
Bram Moolenaar authored
Problem: Some tests are run twice. Solution: Invoked most utf8 tests only from test_alot_utf8. (Yegappan Lakshmanan, closes #2369)
-
Bram Moolenaar authored
Problem: Highlighting in quickfix window could be better. (Axel Bender) Solution: Use the qfSeparator highlight item. (Yegappan Lakshmanan)
-
- Nov 22, 2017
-
-
Bram Moolenaar authored
Problem: Possible crash when window can be zero lines high. (Joseph Dornisch) Solution: Only set w_fraction if the window is at least two lines high.
-
- Nov 21, 2017
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: MS-Windows: job in terminal can't get back to Vim. Solution: set VIM_SERVERNAME in the environment. (Yasuhiro Matsumoto, closes #2360)
-
Bram Moolenaar authored
Problem: When a flaky test fails it also often fails the second time. Solution: Sleep a couple of seconds before the second try.
-
Bram Moolenaar authored
Problem: Trouble when using ":term ++close" with autocmd. (Gabriel Barta) Solution: Use aucmd_prepbuf() and aucmd_restbuf() instead of setting curbuf. (closes #2339)
-
Bram Moolenaar authored
Problem: New proto file missing from distribution. Solution: Add it. (closes #2355)
-