summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.236v7.3.236Bram Moolenaar2011-06-262-3/+5
| | | | | Problem: Python 3 doesn't compile without +multi_byte Solution: Use "latin1" when MULTI_BYTE is not defined. (lilydjwg)
* updated for version 7.3.235v7.3.235Bram Moolenaar2011-06-2613-14/+58
| | | | | Problem: ";" gets stuck on a "t" command, it's not useful. Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
* updated for version 7.3.234v7.3.234Bram Moolenaar2011-06-265-8/+14
| | | | | Problem: With GTK menu may be popping down. Solution: Use event time instead of GDK_CURRENT_TIME. (Hong Xu)
* updated for version 7.3.233v7.3.233Bram Moolenaar2011-06-262-2/+10
| | | | | Problem: ":scriptnames" and ":breaklist" show long file names. Solution: Shorten to use "~/" when possible. (Jean-Rene David)
* updated for version 7.3.232v7.3.232Bram Moolenaar2011-06-262-2/+10
| | | | | Problem: Python doesn't compile without +multi_byte Solution: Use "latin1" when MULTI_BYTE is not defined.
* updated for version 7.3.231v7.3.231Bram Moolenaar2011-06-261-0/+2
| | | | | | Problem: Runtime file patches failed. Solution: Redo the patches made against the patched files instead of the files in the mercurial repository.
* updated for version 7.3.230v7.3.230Bram Moolenaar2011-06-202-2/+4
| | | | | | Problem: ":wundo" and ":rundo" don't unescape their argument. (Aaron Thoma) Solution: Use FILE1 instead of XFILE.
* updated for version 7.3.229v7.3.229Bram Moolenaar2011-06-202-1/+4
| | | | | | Problem: Using fork() makes gvim crash on Mac when build with CoreFoundation. Solution: Disallow fork() when __APPLE__ is defined. (Hisashi T Fujinaka)
* updated for version 7.3.228v7.3.228Bram Moolenaar2011-06-202-0/+3
| | | | | Problem: "2gj" does not always move to the correct position. Solution: Get length of line after moving to a next line. (James Vega)
* updated for version 7.3.227v7.3.227Bram Moolenaar2011-06-202-12/+6
| | | | | Problem: Mac OS doesn't have the linewise clipboard fix. Solution: Also change the Mac OS file. (Bjorn Winckler)
* Updated runtime files.Bram Moolenaar2011-06-1947-535/+938
|
* updated for version 7.3.226v7.3.226Bram Moolenaar2011-06-192-1/+9
| | | | | | 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.
* updated for version 7.3.225v7.3.225Bram Moolenaar2011-06-1912-10/+273
| | | | | | | 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)
* updated for version 7.3.224v7.3.224Bram Moolenaar2011-06-193-4/+24
| | | | | Problem: Can't pass dict to sort function. Solution: Add the optional {dict} argument to sort(). (ZyX)
* updated for version 7.3.223v7.3.223Bram Moolenaar2011-06-193-153/+155
| | | | | | 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.
* updated for version 7.3.222v7.3.222Bram Moolenaar2011-06-193-2/+4
| | | | | Problem: Warning for building GvimExt. Solution: Comment-out the DESCRIPTION line. (Mike Williams)
* updated for version 7.3.221v7.3.221Bram Moolenaar2011-06-198-18/+22
| | | | | | 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.
* updated for version 7.3.220v7.3.220Bram Moolenaar2011-06-194-270/+339
| | | | | | | | | | | 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)
* Add files added by recent patches.Bram Moolenaar2011-06-133-0/+56
|
* updated for version 7.3.219v7.3.219Bram Moolenaar2011-06-134-2/+8
| | | | | Problem: Can't compile with GTK on Mac. Solution: Add some #ifdef trickery. (Ben Schmidt)
* updated for version 7.3.218v7.3.218Bram Moolenaar2011-06-133-4/+4
| | | | | Problem: Tiny configuration problem with Python 3. Solution: Add abiflags in one more place. (Andreas Behr)
* updated for version 7.3.217v7.3.217Bram Moolenaar2011-06-132-1/+4
| | | | | Problem: Inside an "if" a ":wincmd" causes problems. Solution: When skipping commands let ":wincmd" skip over its argument.
* updated for version 7.3.216v7.3.216Bram Moolenaar2011-06-138-8/+12
| | | | | | 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.
* updated for version 7.3.215v7.3.215Bram Moolenaar2011-06-123-0/+10
| | | | | Problem: Wrong file names in previous patch. (Toothpik) Solution: Include the option changes.
* updated for version 7.3.214v7.3.214Bram Moolenaar2011-06-122-2/+4
| | | | | Problem: The text displayed by ":z-" isn't exactly like old Vi. Solution: Add one to the start line number. (ChangZhuo Chen)
* updated for version 7.3.213v7.3.213Bram Moolenaar2011-06-124-2/+43
| | | | | Problem: Javascript object literal is not indented correctly. Solution: Make a special case for when "J1" is in 'cino'. (Luc Deschenaux)
* updated for version 7.3.212v7.3.212Bram Moolenaar2011-06-124-11/+48
| | | | | | Problem: With Python 3.2 ":py3" fails. Solution: Move PyEval_InitThreads() to after Py_Initialize(). (Roland Puntaier) Check abiflags in configure. (Andreas Behr)
* updated for version 7.3.211v7.3.211Bram Moolenaar2011-06-122-1/+3
| | | | | Problem: Compiler warning. Solution: Add type cast.
* updated for version 7.3.210v7.3.210Bram Moolenaar2011-06-124-16/+56
| | | | | Problem: Can't always find the file when using cscope. Solution: Add the 'cscoperelative' option. (Raghavendra D Prabhu)
* updated for version 7.3.209v7.3.209Bram Moolenaar2011-06-123-3/+7
| | | | | Problem: MSVC Install instructions point to wrong batch file. Solution: Add a batch file for use with MSVC 10.
* updated for version 7.3.208v7.3.208Bram Moolenaar2011-06-122-1/+3
| | | | | Problem: Early terminated if statement. Solution: Remove the semicolon. (Lech Lorens)
* updated for version 7.3.207v7.3.207Bram Moolenaar2011-06-122-2/+4
| | | | | Problem: Can't compile with MSVC with pentium4 and 64 bit. Solution: Only use SSE2 for 32 bit. (Mike Williams)
* updated for version 7.3.206v7.3.206Bram Moolenaar2011-05-252-1/+3
| | | | | Problem: 64bit MS-Windows compiler warning. Solution: Use HandleToLong() instead of type cast. (Mike Williams)
* updated for version 7.3.205v7.3.205Bram Moolenaar2011-05-252-4/+7
| | | | | Problem: Syntax "extend" doesn't work correctly. Solution: Avoid calling check_state_ends() recursively (Ben Schmidt)
* updated for version 7.3.204v7.3.204Bram Moolenaar2011-05-252-1/+3
| | | | | Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
* updated for version 7.3.203v7.3.203Bram Moolenaar2011-05-253-2/+55
| | | | | Problem: MS-Windows: Can't run an external command without a console window. Solution: Support ":!start /b cmd". (Xaizek)
* updated for version 7.3.202v7.3.202Bram Moolenaar2011-05-255-7/+426
| | | | | Problem: Cannot influence the indent inside a namespace. Solution: Add the "N" 'cino' parameter. (Konstantin Lepa)
* updated for version 7.3.201v7.3.201Bram Moolenaar2011-05-254-7/+43
| | | | | Problem: "} else" still causes following lines to be indented too much. Solution: Better detection for the "else" block. (Lech Lorens)
* updated for version 7.3.200v7.3.200Bram Moolenaar2011-05-252-2/+15
| | | | | Problem: CTRL-D doesn't complete :lang. Solution: Add the missing part of the change. (Dominique Pelle)
* updated for version 7.3.199v7.3.199Bram Moolenaar2011-05-252-2/+7
| | | | | Problem: MS-Windows: Compilation problem of OLE with MingW compiler. Solution: Put #ifdef around declarations. (Guopeng Wen)
* updated for version 7.3.198v7.3.198Bram Moolenaar2011-05-197-27/+134
| | | | | Problem: No completion for ":lang". Solution: Get locales to complete from. (Dominique Pelle)
* updated for version 7.3.197v7.3.197Bram Moolenaar2011-05-192-4/+10
| | | | | | 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)
* updated for version 7.3.196v7.3.196Bram Moolenaar2011-05-198-8/+57
| | | | | Problem: Can't intercept a character that is going to be inserted. Solution: Add the InsertCharPre autocommand event. (Jakson A. Aquino)
* updated for version 7.3.195v7.3.195Bram Moolenaar2011-05-194-6/+68
| | | | | | Problem: "} else" causes following lines to be indented too much. (Rouben Rostamian) Solution: Better detection for the "else". (Lech Lorens)
* updated for version 7.3.194v7.3.194Bram Moolenaar2011-05-192-0/+5
| | | | | | 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)
* updated for version 7.3.193v7.3.193Bram Moolenaar2011-05-193-1/+9
| | | | | | | 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)
* updated for version 7.3.192v7.3.192Bram Moolenaar2011-05-192-1/+11
| | | | | | Problem: Ex command ":s/ \?/ /g" splits multi-byte characters into bytes. (Dominique Pelle) Solution: Advance over whole character instead of one byte.
* Updated message translations.Bram Moolenaar2011-05-1933-590/+0
|
* updated for version 7.3.191v7.3.191Bram Moolenaar2011-05-1913-220/+10
| | | | | | Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
* Updated runtime files.Bram Moolenaar2011-05-1912-95/+718
|