- Jun 17, 2018
-
-
Bram Moolenaar authored
Problem: Mac: NSStringPboardType is deprecated. Solution: Use NSPasteboardTypeString. (Akshay Hegde, closes #3022)
-
Bram Moolenaar authored
Problem: Popup menu broken if a callback changes the window layout. (Qiming Zhao) Solution: Recompute the popup menu position if needed. Redraw the ruler even when the popup menu is displayed.
-
- Jun 16, 2018
-
-
Bram Moolenaar authored
Problem: Window title is wrong after resetting and setting 'title'. Solution: Move resetting the title into maketitle(). (Jason Franklin)
-
Bram Moolenaar authored
Problem: Crash when autocommands delete the current buffer. (Dominique Pelle) Solution: Check that autocommands don't change the buffer.
-
Bram Moolenaar authored
Problem: Displayed digraph for "ga" wrong with 'encoding' "cp1251". Solution: Convert from 'encoding' to "utf-8" if needed. (closes #3015)
-
Bram Moolenaar authored
Problem: Display problem with margins and scrolling. Solution: Place the cursor in the right column. (Kouichi Iwamoto, closes #3016)
-
Bram Moolenaar authored
Problem: Popup menu displayed wrong when using autocmd. Solution: Use aucmd_prepbuf(). Force updating status line if the popup menu is going to be redrawn anyway. (Christian Brabandt, closes #3009)
-
Bram Moolenaar authored
Problem: Crash when using :hardcopy with illegal byte. Solution: Check for string_convert() returning NULL. (Dominique Pelle)
-
- Jun 13, 2018
-
-
Bram Moolenaar authored
Problem: Complete test has wrong order of arguments. Wrong type for sentinel variable. Solution: Swap arguments, use VAR_UNKNOWN. (Ozaki Kiichi)
-
Bram Moolenaar authored
Problem: Compiler warning for using %ld for "long long". Solution: Add a type cast. (closes #3002)
-
- Jun 12, 2018
-
-
Bram Moolenaar authored
Problem: The first argument given to 'completefunc' can be Number or String, depending on the value. Solution: Avoid guessing the type of an argument, use typval_T in the callers of call_vim_function(). (Ozaki Kiichi, closes #2993)
-
Bram Moolenaar authored
Problem: When a mapping to <Nop> times out the next mapping is skipped. Solution: Reset "timedout" when waiting for a character. (Christian Brabandt, closes #2921)
-
Bram Moolenaar authored
Problem: MS-Windows: missing #endif. Solution: Add the #endif.
-
Bram Moolenaar authored
Problem: $VIM_TERMINAL is also set when not in a terminal window. Solution: Pass a flag to indicate whether the job runs in a terminal.
-
Bram Moolenaar authored
Problem: Shell cannot tell running in a terminal window. Solution: Add the VIM_TERMINAL environment variable. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: vim_str2nr() does not handle numbers close to the maximum. Solution: Check for overflow more precisely. (Ken Takata, closes #2746)
-
Bram Moolenaar authored
Problem: No completion for :unlet $VAR. Solution: Add completion. (Jason Franklin)
-
Bram Moolenaar authored
Problem: Loading a session file fails if 'winheight' is a big number. Solution: Set 'minwinheight' to zero at first. Don't give an error when setting 'minwinheight' while 'winheight' is a big number. Fix using vertical splits. Fix setting 'minwinwidth'. (closes #2970)
-
Bram Moolenaar authored
Problem: Popup test isn't run completely. Solution: Remove "finish". Clean up function definitions.
-
Bram Moolenaar authored
Problem: If a test function exists Vim this may go unnoticed. Solution: Check for a test funtion quitting Vim. Fix tests that did exit Vim.
-
Bram Moolenaar authored
Problem: ++bad argument of :edit does not work properly. Solution: Return FAIL from get_bad_opt() only when there is no valid argument. (Dominique Pelle, Christian Brabandt, closes #2966, closes #2947)
-
- Jun 10, 2018
-
-
Bram Moolenaar authored
Problem: If omni completion opens a window Insert mode is stopped. (Hirohito Higashi) Solution: Only set stop_insert_mode in a prompt buffer window.
-
Bram Moolenaar authored
Problem: Attribute "width" missing from python window attribute list. Solution: Add the item. (Ken Takata) Order the list like the items are used in the WindowAttr() function.
-
Bram Moolenaar authored
Problem: Warnings from 64-bit compiler. Solution: Add type casts. (Mike Williams)
-
- Jun 07, 2018
-
-
Bram Moolenaar authored
Problem: Cannot easily delete lines in another buffer. Solution: Add deletebufline().
-
Bram Moolenaar authored
Problem: Popup test causes Vim to exit. Solution: Disable the broken part of the test for now.
-
- Jun 06, 2018
-
-
Bram Moolenaar authored
Problem: Cannot easily append lines to another buffer. Solution: Add appendbufline().
-
Bram Moolenaar authored
Problem: Not restoring Insert mode if leaving a prompt buffer by using a mouse click. Solution: Set b_prompt_insert appropriately. Also correct cursor position when moving cursor to last line.
-
Bram Moolenaar authored
Problem: Not easy to switch between prompt buffer and other windows. Solution: Accept CTRL-W commands in Insert mode. Start and stop Insert mode as one would expect.
-
- Jun 04, 2018
-
-
Bram Moolenaar authored
Problem: Cursor not restored with ":edit #". Solution: Don't assume autocommands moved the cursor when it was moved to the first non-blank.
-
Bram Moolenaar authored
Problem: Keys to stop Vim in terminal are wrong. (Marius Gedminas) Solution: Move ":" to before CTRL-U.
-
Bram Moolenaar authored
Problem: BS in prompt buffer starts new line. Solution: Do not allows BS over the prompt. Make term_sendkeys() handle special keys. Add a test.
-
- Jun 03, 2018
-
-
Bram Moolenaar authored
Problem: Terminal test aucmd_on_close if flaky. Solution: Wait a bit longer.
-
Bram Moolenaar authored
Problem: Stoping Vim running in a terminal may not work. Solution: Instead of sending <Esc> send CTRL-O.
-
Bram Moolenaar authored
Problem: Terminal test fails on MS-Windows when "wc" exists. Solution: Skip test with redirection on MS-Windows.
-
Bram Moolenaar authored
Problem: Prompt buffer test fails on MS-Windows. Solution: Disable the test for now. Remove stray assert.
-
Bram Moolenaar authored
Problem: Difficult to make a plugin that feeds a line to a job. Solution: Add the nitial code for the "prompt" buftype.
-
- May 26, 2018
-
-
Bram Moolenaar authored
Problem: Terminal test fails with very tall terminal. (Tom) Solution: Fix the terminal window size in the test.
-
Bram Moolenaar authored
Problem: No test for the undofile() function. Solution: Add test. (Dominique Pelle, closes #2958)
-
Bram Moolenaar authored
Problem: % command not testded on #ifdef and comment. Solution: Add tests. (Dominique Pelle, closes #2956)
-