summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-06-19updated for version 7.3.223Bram Moolenaar
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.
2011-06-19updated for version 7.3.222Bram Moolenaar
Problem: Warning for building GvimExt. Solution: Comment-out the DESCRIPTION line. (Mike Williams)
2011-06-19updated for version 7.3.221Bram Moolenaar
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.
2011-06-19updated for version 7.3.220Bram Moolenaar
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)
2011-06-13Add files added by recent patches.Bram Moolenaar
2011-06-13updated for version 7.3.219Bram Moolenaar
Problem: Can't compile with GTK on Mac. Solution: Add some #ifdef trickery. (Ben Schmidt)
2011-06-13updated for version 7.3.218Bram Moolenaar
Problem: Tiny configuration problem with Python 3. Solution: Add abiflags in one more place. (Andreas Behr)
2011-06-13updated for version 7.3.217Bram Moolenaar
Problem: Inside an "if" a ":wincmd" causes problems. Solution: When skipping commands let ":wincmd" skip over its argument.
2011-06-13updated for version 7.3.216Bram Moolenaar
Problem: When recovering a file a range of lines is missing. (Charles Jie) Solution: Reset the index when advancing to the next pointer block. Add a test to verify recovery works.
2011-06-12updated for version 7.3.215Bram Moolenaar
Problem: Wrong file names in previous patch. (Toothpik) Solution: Include the option changes.
2011-06-12updated for version 7.3.214Bram Moolenaar
Problem: The text displayed by ":z-" isn't exactly like old Vi. Solution: Add one to the start line number. (ChangZhuo Chen)
2011-06-12updated for version 7.3.213Bram Moolenaar
Problem: Javascript object literal is not indented correctly. Solution: Make a special case for when "J1" is in 'cino'. (Luc Deschenaux)
2011-06-12updated for version 7.3.212Bram Moolenaar
Problem: With Python 3.2 ":py3" fails. Solution: Move PyEval_InitThreads() to after Py_Initialize(). (Roland Puntaier) Check abiflags in configure. (Andreas Behr)
2011-06-12updated for version 7.3.211Bram Moolenaar
Problem: Compiler warning. Solution: Add type cast.
2011-06-12updated for version 7.3.210Bram Moolenaar
Problem: Can't always find the file when using cscope. Solution: Add the 'cscoperelative' option. (Raghavendra D Prabhu)
2011-06-12updated for version 7.3.209Bram Moolenaar
Problem: MSVC Install instructions point to wrong batch file. Solution: Add a batch file for use with MSVC 10.
2011-06-12updated for version 7.3.208Bram Moolenaar
Problem: Early terminated if statement. Solution: Remove the semicolon. (Lech Lorens)
2011-06-12updated for version 7.3.207Bram Moolenaar
Problem: Can't compile with MSVC with pentium4 and 64 bit. Solution: Only use SSE2 for 32 bit. (Mike Williams)
2011-05-25updated for version 7.3.206Bram Moolenaar
Problem: 64bit MS-Windows compiler warning. Solution: Use HandleToLong() instead of type cast. (Mike Williams)
2011-05-25updated for version 7.3.205Bram Moolenaar
Problem: Syntax "extend" doesn't work correctly. Solution: Avoid calling check_state_ends() recursively (Ben Schmidt)
2011-05-25updated for version 7.3.204Bram Moolenaar
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
2011-05-25updated for version 7.3.203Bram Moolenaar
Problem: MS-Windows: Can't run an external command without a console window. Solution: Support ":!start /b cmd". (Xaizek)
2011-05-25updated for version 7.3.202Bram Moolenaar
Problem: Cannot influence the indent inside a namespace. Solution: Add the "N" 'cino' parameter. (Konstantin Lepa)
2011-05-25updated for version 7.3.201Bram Moolenaar
Problem: "} else" still causes following lines to be indented too much. Solution: Better detection for the "else" block. (Lech Lorens)
2011-05-25updated for version 7.3.200Bram Moolenaar
Problem: CTRL-D doesn't complete :lang. Solution: Add the missing part of the change. (Dominique Pelle)
2011-05-25updated for version 7.3.199Bram Moolenaar
Problem: MS-Windows: Compilation problem of OLE with MingW compiler. Solution: Put #ifdef around declarations. (Guopeng Wen)
2011-05-19updated for version 7.3.198Bram Moolenaar
Problem: No completion for ":lang". Solution: Get locales to complete from. (Dominique Pelle)
2011-05-19updated for version 7.3.197Bram Moolenaar
Problem: When a QuickfixCmdPost event removes all errors, Vim still tries to jump to the first error, resulting in E42. Solution: Get the number of error after the autocmd event. (Mike Lundy)
2011-05-19updated for version 7.3.196Bram Moolenaar
Problem: Can't intercept a character that is going to be inserted. Solution: Add the InsertCharPre autocommand event. (Jakson A. Aquino)
2011-05-19updated for version 7.3.195Bram Moolenaar
Problem: "} else" causes following lines to be indented too much. (Rouben Rostamian) Solution: Better detection for the "else". (Lech Lorens)
2011-05-19updated for version 7.3.194Bram Moolenaar
Problem: When "b" is a symlink to directory "a", resolve("b/") doesn't result in "a/". (ZyX) Solution: Remove the trailing slash. (Jean-Rene David)
2011-05-19updated for version 7.3.193Bram Moolenaar
Problem: In the command line window ":close" doesn't work properly. (Tony Mechelynck) Solution: Use Ctrl_C instead of K_IGNORE for cmdwin_result. (Jean-Rene David)
2011-05-19updated for version 7.3.192Bram Moolenaar
Problem: Ex command ":s/ \?/ /g" splits multi-byte characters into bytes. (Dominique Pelle) Solution: Advance over whole character instead of one byte.
2011-05-19Updated message translations.Bram Moolenaar
2011-05-19updated for version 7.3.191Bram Moolenaar
Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
2011-05-19updated for version 7.3.190Bram Moolenaar
Problem: When there is a "containedin" syntax argument highlighting may be wrong. (Radek) Solution: Reset current_next_list. (Ben Schmidt)
2011-05-10updated for version 7.3.189Bram Moolenaar
Problem: Can't build without +clipboard feature. (Christian Ebert) Solution: Add the missing #ifdef.
2011-05-10updated for version 7.3.188Bram Moolenaar
Problem: More RISC OS files to remove. Solution: Remove them. Update the file list.
2011-05-10Remove the deleted RISC OS files.Bram Moolenaar
2011-05-10updated for version 7.3.187Bram Moolenaar
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
2011-05-10updated for version 7.3.186Bram Moolenaar
Problem: When 'clipboard' contains "unnamed" or "unnamedplus" the value of v:register is wrong for operators without a specific register. Solution: Adjust the register according to 'clipboard'. (Ingo Karkat)
2011-05-10updated for version 7.3.185Bram Moolenaar
Problem: ":windo g/pattern/q" closes windows and reports "N more lines". (Tim Chase) Solution: Remember what buffer ":global" started in. (Jean-Rene David)
2011-05-10updated for version 7.3.184Bram Moolenaar
Problem: Static code analysis errors in riscOS. Solution: Make buffer size bigger. (Dominique Pelle)
2011-05-10updated for version 7.3.183Bram Moolenaar
Problem: When Exuberant ctags binary is exuberant-ctags it's not found. Solution: Add configure check for exuberant-ctags.
2011-05-10updated for version 7.3.182Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Add dummy initializer.
2011-05-10updated for version 7.3.181Bram Moolenaar
Problem: When repeating the insert of CTRL-V or a digraph the display may not be updated correctly. Solution: Only call edit_unputchar() after edit_putchar(). (Lech Lorens)
2011-05-10updated for version 7.3.180Bram Moolenaar
Problem: When both a middle part of 'comments' matches and an end part, the middle part was used errornously. Solution: After finding the middle part match continue looking for a better end part match. (partly by Lech Lorens)
2011-05-10updated for version 7.3.179Bram Moolenaar
Problem: C-indent doesn't handle colon in string correctly. Solution: Skip the string. (Lech Lorens)
2011-05-10updated for version 7.3.178Bram Moolenaar
Problem: C-indent doesn't handle code right after { correctly. Solution: Fix detecting unterminated line. (Lech Lorens)
2011-05-05updated for version 7.3.177Bram Moolenaar
Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is "utf-8". Solution: Convert to utf-16. (Yukihiro Nakadaira)