- Jan 14, 2015
-
-
Bram Moolenaar authored
Problem: Redrawing problem with 'relativenumber' and 'linebreak'. Solution: Temporarily reset 'linebreak' and restore it in more places. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Unicode character properties are outdated. Solution: Update the tables with the latest version.
-
Bram Moolenaar authored
Problem: No error for eval('$'). Solution: Check for empty name. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Mapping CTRL-C in Visual mode doesn't work. (Ingo Karkat) Solution: Call get_real_state() instead of using State directly.
-
Bram Moolenaar authored
Problem: Address type of :wincmd depends on the argument. Solution: Check the argument.
-
Bram Moolenaar authored
Problem: Can't build with tiny features. (Ike Devolder) Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: Building with dynamic library does not work for Ruby 2.2.0 Solution: Change #ifdefs and #defines. (Ken Takata)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Having CTRL-C interrupt or not does not check the mode of the mapping. (Ingo Karkat) Solution: Use a bitmask with the map mode. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Giving an error for ":0wincmd w" is a problem for some plugins. Solution: Allow the zero in the range. (Marcin Szamotulski)
-
- Jan 10, 2015
-
-
Bram Moolenaar authored
-
- Jan 07, 2015
-
-
Bram Moolenaar authored
Problem: Non-ascii vertical separater characters are always redrawn. Solution: Compare only the one byte that's stored. (Thiago Padilha)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: :argdo, :bufdo, :windo and :tabdo don't take a range. Solution: Support the range. (Marcin Szamotulski)
-
Bram Moolenaar authored
Problem: Ranges for arguments, buffers, tabs, etc. are not checked to be valid but limited to the maximum. This can cause the wrong thing to happen. Solution: Give an error for an invalid value. (Marcin Szamotulski) Use windows range for ":wincmd".
-
Bram Moolenaar authored
Problem: FEAT_OSFILETYPE is used even though it's never defined. Solution: Remove the code. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: No test for replacing on a tab in Virtual replace mode. Solution: Add a test. (Elias Diem)
-
Bram Moolenaar authored
Problem: Segfault with wide screen and error in 'rulerformat'. (Ingo Karkat) Solution: Check there is enough space. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Ex range handling is wrong for buffer-local user commands. Solution: Check for CMD_USER_BUF. (Marcin Szamotulski)
-
- Dec 17, 2014
-
-
Bram Moolenaar authored
Problem: Memory leak using :wviminfo. Issue 296. Solution: Free memory when needed. (idea by Christian Brabandt)
-
Bram Moolenaar authored
Problem: Appending a block in the middle of a tab does not work correctly when virtualedit is set. Solution: Decrement spaces and count, don't reset them. (James McCoy)
-
Bram Moolenaar authored
Problem: When the X server restarts Vim may get stuck. Solution: Destroy the application context and create it again. (Issue 203)
-
Bram Moolenaar authored
Problem: One more small issue. Solution: Update function proto.
-
Bram Moolenaar authored
Problem: Failed commands in Python interface not handled correctly. Solution: Restore window and buffer on failure.
-
Bram Moolenaar authored
Problem: test_close_count may fail for some combination of features. Solution: Require normal features.
-
Bram Moolenaar authored
Problem: Missing part of patch 7.4.519. Solution: Copy back regprog after calling vim_regexec.
-
Bram Moolenaar authored
Problem: Various small issues. Solution: Fix those issues.
-
- Dec 14, 2014
-
-
Bram Moolenaar authored
-
- Dec 13, 2014
-
-
Bram Moolenaar authored
Problem: Langmap applies to Insert mode expression mappings. Solution: Check for Insert mode. (Daniel Hahler)
-
Bram Moolenaar authored
Problem: "ygn" may yank too much. (Fritzophrenic) Issue 295. Solution: Check the width of the next match. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: curs_rows() function is always called with the second argument false. Solution: Remove the argument. (Christian Brabandt) validate_botline_win() can then also be removed.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Function name not recognized correctly when inside a function. Solution: Don't check for an alpha character.
-
Bram Moolenaar authored
Problem: Function name not recognized correctly when inside a function. Solution: Don't check for an alpha character.
-
Bram Moolenaar authored
Problem: Using "vit" does not select a multi-byte character at the end correctly. Solution: Advance the cursor over the multi-byte character. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Repeated use of vim_snprintf() with a number. Solution: Move these vim_snprintf() calls into a function.
-
Bram Moolenaar authored
Problem: Highlighting for multi-line matches is not correct. Solution: Stop highlight at the end of the match. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Warnings for unused arguments when compiling with a combination of features. Solution: Add "UNUSED".
-
Bram Moolenaar authored
Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three. (Eliseo Martínez) Issue 287 Solution: Correct the line count. (Christian Brabandt) Also set the last used search pattern.
-
- Dec 08, 2014
-
-
Bram Moolenaar authored
Problem: Using a range for window and buffer commands has a few problems. Cannot specify the type of range for a user command. Solution: Add the -addr argument for user commands. Fix problems. (Marcin Szamotulski)
-