- Jul 18, 2011
-
-
Bram Moolenaar authored
Add missing test82 files.
-
- Jul 15, 2011
-
-
Bram Moolenaar authored
Problem: The coladd field is not reset when setting the line number for a ":call" command. Solution: Reset it.
-
Bram Moolenaar authored
Problem: "echo 'abc' > ''" returns 0 or 1, depending on 'ignorecase'. Checks in mb_strnicmp() for illegal and truncated bytes are wrong. Should not assume that byte length is equal before case folding. Solution: Add utf_safe_read_char_adv() and utf_strnicmp(). Add a test for this. (Ivan Krasilnikov)
-
Bram Moolenaar authored
Problem: Tests fail. (David Northfield) Solution: Add missing update for .ok file.
-
Bram Moolenaar authored
Problem: "gH<Del>" deletes the current line, except when it's the last line. Solution: Set the "include" flag to indicate the last line is to be deleted.
-
Bram Moolenaar authored
Problem: Python: Errors in Unicode characters not handled nicely. Solution: Add the surrogateescape error handler. (lilydjwg)
-
Bram Moolenaar authored
Problem: Wrong indenting for array initializer. Solution: Detect '}' in a better way. (Lech Lorens)
-
Bram Moolenaar authored
Problem: PC Install instructions missing install instructions. Solution: Step-by-step explanation. (Michael Soyka)
-
Bram Moolenaar authored
Problem: Running tests changes the users viminfo file. Test for patch 7.3.245 missing. Solution: Add "nviminfo" to the 'viminfo' option. Include the test.
-
Bram Moolenaar authored
Problem: Repeating "f4" in "4444" skips one 4. Solution: Check the t_cmd flag. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Python 3.2 libraries not correctly detected. Solution: Add the suffix to the library name. (Niclas Zeising)
-
- Jul 07, 2011
-
-
Bram Moolenaar authored
Problem: MS-Windows: Build problem with old compiler. (John Beckett) Solution: Only use HandleToLong() when available. (Mike Williams)
-
Bram Moolenaar authored
Problem: Illegal memory access in readline(). Solution: Swap the conditions. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Illegal memory access in after_pathsep(). Solution: Check that the pointer is not at the start of the file name. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Using CTRL-R CTRL-W on the command line may insert only part of the word. Solution: Use the cursor position instead of assuming it is at the end of the command. (Tyru)
-
Bram Moolenaar authored
Problem: External commands can't use pipes on MS-Windows. Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent Berthoux)
-
Bram Moolenaar authored
Problem: Python corrects the cursor column without taking 'virtualedit' into account. (lilydjwg) Solution: Call check_cursor_col_win().
-
Bram Moolenaar authored
Problem: Compiler warning for conversion. Solution: Add type cast. (Mike Williams)
-
- Jun 26, 2011
-
-
Bram Moolenaar authored
Problem: "filetype" completion doesn't work on Windows. (Yue Wu) Solution: Don't use a glob pattern for the directories, use a list of directories. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Python 3 doesn't compile without +multi_byte Solution: Use "latin1" when MULTI_BYTE is not defined. (lilydjwg)
-
Bram Moolenaar authored
Problem: ";" gets stuck on a "t" command, it's not useful. Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: With GTK menu may be popping down. Solution: Use event time instead of GDK_CURRENT_TIME. (Hong Xu)
-
Bram Moolenaar authored
Problem: ":scriptnames" and ":breaklist" show long file names. Solution: Shorten to use "~/" when possible. (Jean-Rene David)
-
Bram Moolenaar authored
Problem: Python doesn't compile without +multi_byte Solution: Use "latin1" when MULTI_BYTE is not defined.
-
Bram Moolenaar authored
Problem: Runtime file patches failed. Solution: Redo the patches made against the patched files instead of the files in the mercurial repository.
-
- Jun 20, 2011
-
-
Bram Moolenaar authored
Problem: ":wundo" and ":rundo" don't unescape their argument. (Aaron Thoma) Solution: Use FILE1 instead of XFILE.
-
- Jun 19, 2011
-
-
Bram Moolenaar authored
Problem: Using fork() makes gvim crash on Mac when build with CoreFoundation. Solution: Disallow fork() when __APPLE__ is defined. (Hisashi T Fujinaka)
-
Bram Moolenaar authored
Problem: "2gj" does not always move to the correct position. Solution: Get length of line after moving to a next line. (James Vega)
-
Bram Moolenaar authored
Problem: Mac OS doesn't have the linewise clipboard fix. Solution: Also change the Mac OS file. (Bjorn Winckler)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: On a 64 bit system "syn sync fromstart" is very slow. (Bjorn Steinbrink) Solution: Store the state when starting to parse from the first line.
-
Bram Moolenaar authored
Problem: Using "\n" in a substitute inside ":s" does not result in a line break. Solution: Change behavior inside vim_regexec_nl(). Add tests. (Motoya Kurotsu)
-
Bram Moolenaar authored
Problem: Can't pass dict to sort function. Solution: Add the optional {dict} argument to sort(). (ZyX)
-
- Jun 18, 2011
-
-
Bram Moolenaar authored
Problem: MingW cross compilation doesn't work with tiny features. Solution: Move acp_to_enc(), enc_to_utf16() and utf16_to_enc() outside of "#ifdef CLIPBOARD". Fix typo in makefile.
-
Bram Moolenaar authored
Problem: Warning for building GvimExt. Solution: Comment-out the DESCRIPTION line. (Mike Williams)
-
Bram Moolenaar authored
Problem: Text from the clipboard is sometimes handled as linewise, but not consistently. Solution: Assume the text is linewise when it ends in a CR or NL.
-
Bram Moolenaar authored
Problem: Python 3: vim.error is a 'str' instead of an 'Exception' object, so 'except' or 'raise' it causes a 'SystemError' exception. Buffer objects do not support slice assignment. When exchanging text between Vim and Python, multibyte texts become gabage or cause Unicode Expceptions, etc. 'py3file' tries to read in the file as Unicode, sometimes causes UnicodeDecodeException Solution: Fix the problems. (lilydjwg)
-
- Jun 13, 2011
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Can't compile with GTK on Mac. Solution: Add some #ifdef trickery. (Ben Schmidt)
-
- Jun 12, 2011
-
-
Bram Moolenaar authored
Problem: Tiny configuration problem with Python 3. Solution: Add abiflags in one more place. (Andreas Behr)
-