summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2011-10-04updated for version 7.3.331v7.3.331Bram Moolenaar
Problem: "vit" selects wrong text when a tag name starts with the same text as an outer tag name. (Ben Fritz) Solution: Add "\>" to the pattern to check for word boundary.
2011-10-04updated for version 7.3.330v7.3.330Bram Moolenaar
Problem: When longjmp() is invoked if the X server gives an error the state is not properly restored. Solution: Reset vgetc_busy. (Yukihiro Nakadaira)
2011-10-03Add files aaded by patch 7.3.326.Bram Moolenaar
2011-09-30updated for version 7.3.329v7.3.329Bram Moolenaar
Problem: When skipping over code from ":for" to ":endfor" get an error for calling a dict function. (Yasuhiro Matsumoto) Solution: Ignore errors when skipping over :call command.
2011-09-30updated for version 7.3.328v7.3.328Bram Moolenaar
Problem: When command line wraps the cursor may be displayed wrong when there are multi-byte characters. Solution: Position the cursor before drawing the text. (Yasuhiro Matsumoto)
2011-09-30updated for version 7.3.327v7.3.327Bram Moolenaar
Problem: When jumping to a help tag a closed fold doesn't open. Solution: Save and restore KeyTyped. (Yasuhiro Matsumoto)
2011-09-30updated for version 7.3.326v7.3.326Bram Moolenaar
Problem: MingW 4.6 no longer supports the -mno-cygwin option. Solution: Split the Cygwin and MingW makefiles. (Matsushita Shougo)
2011-09-30updated for version 7.3.325v7.3.325Bram Moolenaar
Problem: A duplicated function argument gives an internal error. Solution: Give a proper error message. (based on patch by Tyru)
2011-09-30updated for version 7.3.324v7.3.324Bram Moolenaar
Problem: Completion for ":compiler" shows color scheme names. Solution: Fix the directory name. (James Vega)
2011-09-30updated for version 7.3.323v7.3.323Bram Moolenaar
Problem: The default 'errorformat' does not ignore some "included from" lines. Solution: Add a few more patterns. (Ben Boeckel)
2011-09-21updated for version 7.3.322v7.3.322Bram Moolenaar
Problem: #ifdef for PDP_RETVAL doesn't work, INT_PTR can be a typedef. Solution: Check the MSC version and 64 bit flags. (Sergiu Dotenco)
2011-09-21updated for version 7.3.321v7.3.321Bram Moolenaar
Problem: Code not following Vim style. Solution: Fix the style. (Elias Diem)
2011-09-21updated for version 7.3.320v7.3.320Bram Moolenaar
Problem: When a 0xa0 character is in a sourced file the error message for unrecognized command does not show the problem. Solution: Display 0xa0 as <a0>.
2011-09-21updated for version 7.3.319v7.3.319Bram Moolenaar
Problem: Redobuff doesn't always include changes of the completion leader. Solution: Insert backspaces as needed. (idea by Taro Muraoka)
2011-09-21updated for version 7.3.318v7.3.318Bram Moolenaar
Problem: "C" on the last line deletes that line if it's blank. Solution: Only delete the last line for a delete operation. (James Vega)
2011-09-21updated for version 7.3.317v7.3.317Bram Moolenaar
Problem: Calling debug.debug() in Lua may cause Vim to hang. Solution: Add a better debug method. (Rob Hoelz, Luis Carvalho)
2011-09-21updated for version 7.3.316v7.3.316Bram Moolenaar
Problem: Crash when 'colorcolumn' is set and closing buffer. Solution: Check for w_buffer to be NULL. (Yasuhiro Matsumoto)
2011-09-14updated for version 7.3.315v7.3.315Bram Moolenaar
Problem: Opening a window before forking causes problems for GTK. Solution: Fork first, create the window in the child and report back to the parent process whether it worked. If successful the parent exits, if unsuccessful the child exits and the parent continues in the terminal. (Tim Starling)
2011-09-14updated for version 7.3.314v7.3.314Bram Moolenaar
Problem: Missing parenthesis. Solution: Add it. (Benjamin R. Haskell)
2011-09-14updated for version 7.3.313v7.3.313Bram Moolenaar
Problem: One more warning when compiling with dynamic Python 3. Solution: Change PySliceObject to PyObject.
2011-09-14updated for version 7.3.312v7.3.312Bram Moolenaar
Problem: Can't compile with tiny features. Solution: Add #ifdef around win_valid().
2011-09-14updated for version 7.3.311v7.3.311Bram Moolenaar
Problem: Complete function isn't called when the leader changed. Solution: Allow the complete function to return a dictionary with a flag that indicates ins_compl_restart() is to be called when the leader changes. (Taro Muraoka)
2011-09-14updated for version 7.3.310v7.3.310Bram Moolenaar
Problem: Code not following Vim style. Solution: Fix the style. (Elias Diem)
2011-09-14updated for version 7.3.309v7.3.309Bram Moolenaar
Problem: Warnings for pointer types. Solution: Change PySliceObject to PyObject.
2011-09-14updated for version 7.3.308v7.3.308Bram Moolenaar
Problem: Writing to 'verbosefile' has problems, e.g. for :highlight. Solution: Do not use a separate verbose_write() function but write with the same code that does redirecting. (Yasuhiro Matsumoto)
2011-09-14updated for version 7.3.307v7.3.307Bram Moolenaar
Problem: Python 3 doesn't support slice assignment. Solution: Implement slices. (Brett Overesch, Roland Puntaier)
2011-09-14updated for version 7.3.306v7.3.306Bram Moolenaar
Problem: When closing a window there is a chance that deleting a scrollbar triggers a GUI resize, which uses the window while it is not in a valid state. Solution: Set the buffer pointer to NULL to be able to detect the invalid situation. Fix a few places that used the buffer pointer incorrectly.
2011-09-14updated for version 7.3.305v7.3.305Bram Moolenaar
Problem: Auto-loading a function while editing the command line causes scrolling up the display. Solution: Don't set msg_scroll when defining a function and the user is not typing. (Yasuhiro Matsumoto)
2011-09-14updated for version 7.3.304v7.3.304Bram Moolenaar
Problem: Strawberry Perl doesn't work on MS-Windows. Solution: Use xsubpp if needed. (Yasuhiro Matsumoto)
2011-09-08updated for version 7.3.303v7.3.303Bram Moolenaar
Problem: Compilation error. Solution: Correct return type from int to pid_t. (Danek Duvall)
2011-09-08updated for version 7.3.302v7.3.302Bram Moolenaar
Problem: Test 19 fails without 'smartindent' and +eval. Solution: Don't use ":exe". Source small.vim.
2011-09-07updated for version 7.3.301v7.3.301Bram Moolenaar
Problem: When 'smartindent' and 'copyindent' are set a Tab is used even though 'expandtab' is set. Solution: Do not insert Tabs. Add a test. (Christian Brabandt)
2011-09-07updated for version 7.3.300v7.3.300Bram Moolenaar
Problem: Python doesn't parse multi-byte argument correctly. Solution: Use "t" instead of "s". (lilydjwg)
2011-09-07updated for version 7.3.299v7.3.299Bram Moolenaar
Problem: Source code not in Vim style. Solution: Adjust the style. (Elias Diem)
2011-09-07updated for version 7.3.298v7.3.298Bram Moolenaar
Problem: Built-in colors are different from rgb.txt. Solution: Adjust the color values. (Benjamin Haskell)
2011-09-07updated for version 7.3.297v7.3.297Bram Moolenaar
Problem: Can't load Perl 5.14 dynamically. Solution: Add code in #ifdefs. (Charles Cooper)
2011-09-07updated for version 7.3.296v7.3.296Bram Moolenaar
Problem: When writing to an external command a zombie process may be left behind. Solution: Wait on the process. (James Vega)
2011-09-07updated for version 7.3.295v7.3.295Bram Moolenaar
Problem: When filtering text with an external command Vim may not read all the output. Solution: When select() is interrupted loop and try again. (James Vega)
2011-09-05updated for version 7.3.294v7.3.294Bram Moolenaar
Problem: Patch 289 causes more problems than it solves. Solution: Rever the patch untill a better solution is found.
2011-09-02updated for version 7.3.293v7.3.293Bram Moolenaar
Problem: MSVC compiler has a problem with non-ASCII characters. Solution: Avoid non-ASCII characters. (Hong Xu)
2011-09-02updated for version 7.3.292v7.3.292Bram Moolenaar
Problem: Crash when using fold markers and selecting a visual block that includes a folded line and goes to end of line. (Sam Lidder) Solution: Check for the column to be MAXCOL. (James Vega)
2011-09-02updated for version 7.3.291v7.3.291Bram Moolenaar
Problem: Configure doesn't work properly with Python3. Solution: Put -ldl before $LDFLAGS. Add PY3_NO_RTLD_GLOBAL. (Roland Puntaier)
2011-09-02updated for version 7.3.290v7.3.290Bram Moolenaar
Problem: When a BufWriteCmd autocommand resets 'modified' this doesn't change older buffer states to be marked as 'modified' like ":write" does. (Yukihiro Nakadaira) Solution: When the BufWriteCmd resets 'modified' then adjust the undo information like ":write" does.
2011-08-28updated for version 7.3.289v7.3.289Bram Moolenaar
Problem: Complete function isn't called when the leader changed. Solution: Call ins_compl_restart() when the leader changed. (Taro Muraoka)
2011-08-28updated for version 7.3.288v7.3.288Bram Moolenaar
Problem: has('python') may give an error message for not being able to load the library after using python3. Solution: Only give the error when the verbose argument is true.
2011-08-27updated for version 7.3.287v7.3.287Bram Moolenaar
Problem: Can't compile with MSVC and tiny options. Solution: Move variables and #ifdefs. (Sergey Khorev)
2011-08-26updated for version 7.3.286v7.3.286Bram Moolenaar
Problem: Crash when using "zd" on a large number of folds. (Sam King) Solution: Recompute pointer after reallocating array. Move fewer entries when making room.
2011-08-19updated for version 7.3.285v7.3.285Bram Moolenaar
Problem: Mapping <Char-123> no longer works. Solution: Properly check for "char-". Add a test for it.
2011-08-17updated for version 7.3.284v7.3.284Bram Moolenaar
Problem: The str2special() function doesn't handle multi-byte characters properly. Solution: Recognize multi-byte characters. (partly by Vladimir Vichniakov)
2011-08-17updated for version 7.3.283v7.3.283Bram Moolenaar
Problem: An expression mapping with a multi-byte character containing a 0x80 byte gets messed up. (ZyX) Solution: Unescape the expression before evaluating it (Yukihiro Nakadaira)