- Feb 06, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: After setting 'isk' to a value ending in a comma appending to the option fails. Solution: Disallow a trailing comma for 'isk' and similar options.
-
Bram Moolenaar authored
Problem: ":window set nu?" displays the cursor line. (Nazri Ramliy) Solution: Do not update the cursor line when conceallevel is zero or the screen has scrolled. (partly by Christian Brabandt)
-
Bram Moolenaar authored
Problem: The " mark is not adjusted when inserting lines. (Roland Eggner) Solution: Adjust the line number. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The color column is not correct when entering a buffer. (Ben Fritz) Solution: Call check_colorcolumn() if 'textwidth' changed. (Christian Brabandt)
-
- Jan 31, 2013
-
-
Bram Moolenaar authored
Problem: MzScheme: circular list does not work correctly. Solution: Separate Mac-specific code from generic code. (Sergey Khorev)
-
- Jan 30, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning for size_t to int conversion. (Skeept) Solution: Add type casts.
-
Bram Moolenaar authored
Problem: "/[^\n]" does match at a line break. Solution: Make it do the same as "/.". (Christian Brabandt)
-
Bram Moolenaar authored
Problem: MzScheme does not build with tiny features. Solution: Add #ifdefs. Also add UNUSED to avoid warnings. And change library ordering.
-
Bram Moolenaar authored
Problem: Tiny build fails. (Tony Mechelynck) Solution: Adjust #ifdefs.
-
Bram Moolenaar authored
Problem: New interactive :substutite behavior is not tested. Solution: Add tests. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: ":substitute" works differently without confirmation. Solution: Do not change the text when asking for confirmation, only display it.
-
Bram Moolenaar authored
Problem: MzScheme interface doesn't work propely. Solution: Make it work better. (Sergey Khorev)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: After reloading a buffer the modelines are not processed. Solution: call do_modelines(). (Ken Takata)
-
Bram Moolenaar authored
Problem: "\k" in regexp does not work in other window. Solution: Use the right buffer. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: When only using patches build fails on missing nl.po. Solution: Create an empty nl.po file.
-
Bram Moolenaar authored
Problem: With 'relativenumber' set it is not possible to see the absolute line number. Solution: For the cursor line show the absolute line number instead of a zero. (Nazri Ramliy)
-
Bram Moolenaar authored
Problem: Python threads don't run in the background (issue 103). Solution: Move the statements to manipulate thread state.
-
- Jan 25, 2013
-
-
Bram Moolenaar authored
Problem: Crash with specific use of search pattern. Solution: Initialize reg_buf to curbuf.
-
Bram Moolenaar authored
Problem: Error when 'guifontwide' has a comma. Solution: Use gui.wide_font. (Taro Muraoka)
-
- Jan 24, 2013
-
-
Bram Moolenaar authored
Problem: Crash when mark is not set. (Dominique Pelle) Solution: Check for NULL.
-
- Jan 23, 2013
-
-
Bram Moolenaar authored
Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: Drawing with 'guifontwide' can be slow. Solution: Draw multiple characters at a time. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: char2nr() and nr2char() always use 'encoding'. Solution: Add argument to use utf-8 characters. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Backwards search lands in wrong place when started on a multibyte character. Solution: Do not set extra_col for a backwards search. (Sung Pae)
-
Bram Moolenaar authored
Problem: Compiler error for adding up two pointers. (Titov Anatoly) Solution: Add a type cast. (Ken Takata)
-
Bram Moolenaar authored
Problem: When building with Gnome locale gets reset. Solution: Set locale after gnome_program_init(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: ml_get error when searching, caused by curwin not matching curbuf. Solution: Avoid changing curbuf. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Cygwin and Mingw builds miss dependency on gui_w48.c. Solution: Add a build rule. (Ken Takata)
-
Bram Moolenaar authored
Problem: Tiny GUI version misses console dialog feature. Solution: Define FEAT_CON_DIALOG when apprpriate. (Christian Brabandt)
-
- Jan 19, 2013
-
-
Bram Moolenaar authored
Problem: Crash when OriginalFirstThunk is zero. Solution: Skip items with OriginalFirstThunk not set. (Ken Takata)
-
- Jan 17, 2013
-
-
Bram Moolenaar authored
Problem: Cursor is at the wrong location and below the end of the file after doing substitutions with confirm flag: %s/x/y/c (Dominique Pelle) Solution: Update the cursor position. (Christian Brabandt & Dominique)
-
Bram Moolenaar authored
Problem: Uninitialized variable. (Yasuhiro Matsumoto) Solution: Set x2 to -1.
-
Bram Moolenaar authored
Problem: Vim.h indentation is inconsistent. Solution: Adjust the indentation. (Elias Diem)
-
Bram Moolenaar authored
Problem: 'matchpairs' does not work with multi-byte characters. Solution: Make it work. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: settabvar() and setwinvar() may move the cursor. Solution: Save and restore the cursor position when appropriate. (idea by Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: (Win32) The _errno used for iconv may be the wrong one. Solution: Use the _errno from iconv.dll. (Ken Takata)
-
Bram Moolenaar authored
Problem: ":help cpo-*" jumps to the wrong place. Solution: Make it equivalent to ":help cpo-star".
-
Bram Moolenaar authored
Problem: Segfault when doing "cclose" on BufUnload in a python function. (Sean Reifschneider) Solution: Skip window with NULL buffer. (Christian Brabandt)
-