summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.601v7.3.601Bram Moolenaar2012-07-162-1/+3
| | | | | Problem: Bad code style. Solution: Insert space, remove parens.
* Updated runtime files.Bram Moolenaar2012-07-122-948/+884
|
* updated for version 7.3.600v7.3.600Bram Moolenaar2012-07-102-1/+9
| | | | | Problem: <f-args> is not expanded properly with DBCS encoding. Solution: Skip over character instead of byte. (Yukihiro Nakadaira)
* updated for version 7.3.599v7.3.599Bram Moolenaar2012-07-102-5/+15
| | | | | Problem: Missing change in one file. Solution: Patch for changed clip_autoselect().
* updated for version 7.3.598v7.3.598Bram Moolenaar2012-07-104-0/+9
| | | | | | Problem: Cannot act upon end of completion. (Taro Muraoka) Solution: Add an autocommand event that is triggered when completion has finished. (Idea by Florian Klein)
* updated for version 7.3.597v7.3.597Bram Moolenaar2012-07-109-58/+101
| | | | | | | | Problem: 'clipboard' "autoselect" only applies to the * register. (Sergey Vakulenko) Solution: Make 'autoselect' work for the + register. (Christian Brabant) Add the "autoselectplus" option in 'clipboard' and the "P" flag in 'guioptions'.
* updated for version 7.3.596v7.3.596Bram Moolenaar2012-07-104-4/+22
| | | | | Problem: Can't remove all signs for a file or buffer. Solution: Support "*" for the sign id. (Christian Brabandt)
* updated for version 7.3.595v7.3.595Bram Moolenaar2012-07-102-35/+31
| | | | | Problem: The X command server responds slowly Solution: Change the loop that waits for replies. (Brian Burns)
* updated for version 7.3.594v7.3.594Bram Moolenaar2012-07-102-43/+45
| | | | | | | Problem: The X command server doesn't work perfectly. It sends an empty reply for as-keys requests. Solution: Remove duplicate ga_init2(). Do not send a reply for as-keys requests. (Brian Burns)
* updated for version 7.3.593v7.3.593Bram Moolenaar2012-07-104-3/+13
| | | | | Problem: No easy way to decide if b:browsefilter will work. Solution: Add the browsefilter feature.
* updated for version 7.3.592v7.3.592Bram Moolenaar2012-07-102-2/+44
| | | | | Problem: Vim on GTK does not support g:browsefilter. Solution: Add a GtkFileFilter to the file chooser. (Christian Brabandt)
* updated for version 7.3.591v7.3.591Bram Moolenaar2012-07-066-3/+78
| | | | | Problem: Can only move to a tab by absolute number. Solution: Move a number of tabs to the left or the right. (Lech Lorens)
* updated for version 7.3.590v7.3.590Bram Moolenaar2012-07-062-0/+15
| | | | | Problem: The '< and '> marks cannot be set directly. Solution: Allow setting '< and '>. (Christian Brabandt)
* updated for version 7.3.589v7.3.589Bram Moolenaar2012-07-062-3/+7
| | | | | Problem: Crash when $HOME is not set. Solution: Check for a NULL pointer. (Chris Webb)
* updated for version 7.3.588v7.3.588Bram Moolenaar2012-07-062-3/+5
| | | | | Problem: Crash on NULL pointer. Solution: Fix the immediate problem by checking for NULL. (Lech Lorens)
* updated for version 7.3.587v7.3.587Bram Moolenaar2012-07-062-6/+5
| | | | | Problem: Compiler warning for local var shadowing global var. Solution: Rename the var and move it to an inner block. (Christian Brabandt)
* updated for version 7.3.586v7.3.586Bram Moolenaar2012-07-063-4/+6
| | | | | Problem: When compiling with Cygwin or MingW MEMORYSTATUSEX is not defined. Solution: Set the default for WINVER to 0x0500.
* updated for version 7.3.585v7.3.585Bram Moolenaar2012-07-062-3/+3
| | | | | Problem: Calling changed_bytes() too often. Solution: Move changed_bytes() out of a loop. (Tor Perkins)
* updated for version 7.3.584v7.3.584Bram Moolenaar2012-06-303-15/+10
| | | | | Problem: PyCObject is not always defined. Solution: Use PyObject instead.
* updated for version 7.3.583v7.3.583Bram Moolenaar2012-06-302-1/+9
| | | | | | Problem: PyObject_NextNotImplemented is not defined before Python 2.7. (Danek Duvall) Solution: Add #ifdefs.
* updated for version 7.3.582v7.3.582Bram Moolenaar2012-06-292-0/+14
| | | | | Problem: Missing parts of the test OK file. Solution: Add the missing parts.
* updated for version 7.3.581v7.3.581Bram Moolenaar2012-06-292-3/+25
| | | | | Problem: Problems compiling with Python. Solution: Pick UCS2 or UCS4 function at runtime. (lilydjwg)
* updated for version 7.3.580v7.3.580Bram Moolenaar2012-06-292-1/+3
| | | | | Problem: Warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
* updated for version 7.3.579v7.3.579Bram Moolenaar2012-06-294-7/+53
| | | | | Problem: Can't compile with Python 2.5. Solution: Use PyCObject when Capsules are not available.
* updated for version 7.3.578v7.3.578Bram Moolenaar2012-06-292-3/+5
| | | | | Problem: Misplaced declaration. Solution: Move declaration to start of block.
* updated for version 7.3.577v7.3.577Bram Moolenaar2012-06-297-17/+31
| | | | | | Problem: Size of memory does not fit in 32 bit unsigned. Solution: Use Kbyte instead of byte. Call GlobalMemoryStatusEx() instead of GlobalMemoryStatus() when available.
* updated for version 7.3.576v7.3.576Bram Moolenaar2012-06-294-54/+67
| | | | | Problem: Formatting of lists inside comments is not right yet. Solution: Use another solution and add a test. (Tor Perkins)
* updated for version 7.3.575v7.3.575Bram Moolenaar2012-06-292-2/+6
| | | | | Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller) Solution: Check for a pending operator.
* updated for version 7.3.574v7.3.574Bram Moolenaar2012-06-292-3/+6
| | | | | | Problem: When pasting a register in the search command line a CTRL-L character is not pasted. (Dominique Pelle) Solution: Escape the CTRL-L. (Christian Brabandt)
* updated for version 7.3.573v7.3.573Bram Moolenaar2012-06-292-1/+3
| | | | | Problem: Using array index before bounds checking. Solution: Swap the parts of the condition. (Dominique Pelle)
* updated for version 7.3.572v7.3.572Bram Moolenaar2012-06-292-5/+4
| | | | | Problem: Duplicate statement in if and else. (Dominique Pelle) Solution: Remove the condition and add a TODO.
* updated for version 7.3.571v7.3.571Bram Moolenaar2012-06-292-5/+7
| | | | | Problem: Duplicated condition. Solution: Remove one. (Dominique Pelle)
* updated for version 7.3.570v7.3.570Bram Moolenaar2012-06-295-7/+15
| | | | | Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
* updated for version 7.3.569v7.3.569Bram Moolenaar2012-06-2918-244/+2413
| | | | | Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
* updated for version 7.3.568v7.3.568Bram Moolenaar2012-06-292-10/+12
| | | | | Problem: Bad indents for #ifdefs. Solution: Add and remove spaces. (Elias Diem)
* updated for version 7.3.567v7.3.567Bram Moolenaar2012-06-292-2/+7
| | | | | Problem: Missing copyright notice. Solution: Add Vim copyright notice. (Taro Muraoka)
* updated for version 7.3.566v7.3.566Bram Moolenaar2012-06-202-3/+7
| | | | | | Problem: Redo after completion does not work correctly when refresh: always is not used. (Raymond Ko) Solution: Check the compl_opt_refresh_always flag. (Christian Brabandt)
* updated for version 7.3.565v7.3.565Bram Moolenaar2012-06-202-1/+3
| | | | | Problem: Can't generate proto file for Python 3. Solution: Add PYTHON3_CFLAGS to LINT_CFLAGS.
* updated for version 7.3.564v7.3.564Bram Moolenaar2012-06-202-1/+4
| | | | | Problem: Warning for pointer conversion. Solution: Add type cast.
* updated for version 7.3.563v7.3.563Bram Moolenaar2012-06-202-4/+12
| | | | | Problem: Can't build with tiny features. Solution: Add #ifdef.
* updated for version 7.3.562v7.3.562Bram Moolenaar2012-06-202-1/+8
| | | | | Problem: ":profdel" should not work when the +profile feature is disabled. Solution: Call ex_ni(). (Yasuhiro Matsumoto)
* updated for version 7.3.561v7.3.561Bram Moolenaar2012-06-202-0/+6
| | | | | | Problem: Using refresh: always in a complete function breaks the "." command. (Val Markovic) Solution: Add match leader to the redo buffer. (Yasuhiro Matsumoto)
* updated for version 7.3.560v7.3.560Bram Moolenaar2012-06-202-0/+3
| | | | | Problem: Get an error for a locked argument in extend(). Solution: Initialize the lock flag for a dictionary. (Yukihiro Nakadaira)
* updated for version 7.3.559v7.3.559Bram Moolenaar2012-06-203-3/+44
| | | | | Problem: home_replace() does not work with 8.3 filename. Solution: Make ":p" expand 8.3 name to full path. (Yasuhiro Matsumoto)
* updated for version 7.3.558v7.3.558Bram Moolenaar2012-06-202-4/+6
| | | | | Problem: Memory access error. (Gary Johnson) Solution: Allocate one more byte. (Dominique Pelle)
* updated for version 7.3.557v7.3.557Bram Moolenaar2012-06-202-6/+17
| | | | | Problem: Crash when an autocommand wipes out a buffer when it is hidden. Solution: Restore the current window when needed. (Christian Brabandt)
* updated for version 7.3.556v7.3.556Bram Moolenaar2012-06-142-3/+5
| | | | | Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
* updated for version 7.3.555v7.3.555Bram Moolenaar2012-06-134-13/+44
| | | | | | Problem: Building on IBM z/OS fails. Solution: Adjust configure. Use the QUOTESED value from config.mk instead of the hard coded one in Makefile. (Stephen Bovy)
* updated for version 7.3.554v7.3.554Bram Moolenaar2012-06-132-1/+3
| | | | | Problem: Compiler warning for unused argument. Solution: Add UNUSED.
* updated for version 7.3.553v7.3.553Bram Moolenaar2012-06-132-1/+15
| | | | | | | Problem: With double-width characters and 'listchars' containing "precedes" the text is displayed one cell off. Solution: Check for double-width character being overwritten by the "precedes" character. (Yasuhiro Matsumoto)