summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.903v7.3.903Bram Moolenaar2013-04-152-1/+11
| | | | | Problem: Crash on exit writing viminfo. (Ron Aaron) Solution: Check for the history to be empty.
* updated for version 7.3.902v7.3.902Bram Moolenaar2013-04-152-0/+3
| | | | | Problem: When deleting last buffer in other tab the tabline is not updated. Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
* updated for version 7.3.901v7.3.901Bram Moolenaar2013-04-154-4/+7
| | | | | Problem: Outdated comment, ugly condition. Solution: Update a few comments, break line.
* updated for version 7.3.900v7.3.900Bram Moolenaar2013-04-152-0/+9
| | | | | Problem: Not obvious that some mouse features are mutual-exclusive. Solution: Add a comment.
* updated for version 7.3.899v7.3.899Bram Moolenaar2013-04-152-3/+6
| | | | | Problem: #if indents are off. Solution: Fix the indents.
* updated for version 7.3.898v7.3.898Bram Moolenaar2013-04-154-30/+47
| | | | | Problem: Memory leak reported by valgrind in test 91. Solution: Only use default argument when needed.
* updated for version 7.3.897v7.3.897Bram Moolenaar2013-04-153-16/+36
| | | | | Problem: Configure doesn't always find the shared library. Solution: Change the configure script. (Ken Takata)
* updated for version 7.3.896v7.3.896Bram Moolenaar2013-04-154-10/+64
| | | | | Problem: Memory leaks in Lua interface. Solution: Fix the leaks, add tests. (Yukihiro Nakadaira)
* updated for version 7.3.895v7.3.895Bram Moolenaar2013-04-152-21/+17
| | | | | Problem: Valgrind error in test 91. (Issue 128) Solution: Pass scope name to find_var_in_ht().
* updated for version 7.3.894v7.3.894Bram Moolenaar2013-04-152-1/+3
| | | | | Problem: Using wrong RUBY_VER causing Ruby build to break. Solution: Correct the RUBY_VER value. (Yongwei Wu)
* updated for version 7.3.893v7.3.893Bram Moolenaar2013-04-157-81/+129
| | | | | | | Problem: Crash when using b:, w: or t: after closing the buffer, window or tabpage. Solution: Allocate the dictionary instead of having it part of the buffer/window/tabpage struct. (Yukihiro Nakadaira)
* updated for version 7.3.892v7.3.892Bram Moolenaar2013-04-144-13/+27
| | | | | Problem: Still mering problems for viminfo history. Solution: Do not merge lines when writing, don't write old viminfo lines.
* updated for version 7.3.891v7.3.891Bram Moolenaar2013-04-142-17/+44
| | | | | | Problem: Merging viminfo history doesn't work well. Solution: Don't stop when one type of history is empty. Don't merge history when writing viminfo.
* updated for version 7.3.890v7.3.890Bram Moolenaar2013-04-142-0/+2
| | | | | Problem: Test 79 fails on Windows. (Michael Soyka) Solution: Add comment below line causing an error.
* updated for version 7.3.889v7.3.889Bram Moolenaar2013-04-142-0/+21
| | | | | Problem: Can't build with Ruby 2.0 on a 64 bit system. Solution: Define rb_fix2int and rb_num2int. (Kohei Suzuki)
* Updated runtime files.Bram Moolenaar2013-04-126-255/+349
|
* updated for version 7.3.888v7.3.888Bram Moolenaar2013-04-122-13/+22
| | | | | | Problem: Filename completion with 'fileignorecase' does not work for multi-byte characters. Solution: Make 'fileignorecase' work properly. (Hirohito Higashi)
* updated for version 7.3.887v7.3.887Bram Moolenaar2013-04-129-7/+133
| | | | | Problem: No tests for Visual mode operators, what 7.3.879 fixes. Solution: Add a new test file. (David Bürgin)
* updated for version 7.3.886v7.3.886Bram Moolenaar2013-04-122-4/+11
| | | | | Problem: Can't build with multi-byte on Solaris 10. Solution: Add #ifdef X_HAVE_UTF8_STRING. (Laurent Blume)
* updated for version 7.3.885v7.3.885Bram Moolenaar2013-04-122-16/+2
| | | | | Problem: Double free for list and dict in Lua. (Shougo Matsu) Solution: Do not unref list and dict. (Yasuhiro Matsumoto)
* Move redif syntax file to the right directory.Bram Moolenaar2013-04-063-6/+6
| | | | Disable recognizing .rdf as a redif file.
* updated for version 7.3.884v7.3.884Bram Moolenaar2013-04-062-5/+7
| | | | | Problem: Compiler warning for variable shadowing another. (John Little) Solution: Rename the variable. (Christian Brabandt)
* updated for version 7.3.883v7.3.883Bram Moolenaar2013-04-062-1/+5
| | | | | Problem: Can't build with some combination of features. Solution: Adjust #ifdefs.
* Updated runtime files.Bram Moolenaar2013-04-0515-63/+157
|
* updated for version 7.3.882v7.3.882Bram Moolenaar2013-04-052-0/+8
| | | | | Problem: CursorHold may trigger after receiving the termresponse. Solution: Set the did_cursorhold flag. (Hayaki Saito)
* updated for version 7.3.881v7.3.881Bram Moolenaar2013-04-054-1/+39
| | | | | Problem: Python list does not work correctly. Solution: Fix it and add a test. (Yukihiro Nakadaira)
* updated for version 7.3.880v7.3.880Bram Moolenaar2013-04-052-25/+30
| | | | | | | Problem: When writing viminfo, old history lines may replace lines written more recently by another Vim instance. Solution: Mark history entries that were read from viminfo and overwrite them when merging with the current viminfo.
* updated for version 7.3.879v7.3.879Bram Moolenaar2013-04-052-5/+13
| | | | | | Problem: When using an ex command in operator pending mode, using Esc to abort the command still executes the operator. (David Bürgin) Solution: Clear the operator when the ex command fails. (Christian Brabandt)
* updated for version 7.3.878v7.3.878Bram Moolenaar2013-04-053-2/+7
| | | | | Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
* updated for version 7.3.877v7.3.877Bram Moolenaar2013-04-034-2/+9
| | | | | Problem: Forward searching with search() is broken. Solution: Fix it and add tests. (Sung Pae)
* updated for version 7.3.876v7.3.876Bram Moolenaar2013-04-032-4/+6
| | | | | Problem: #if indents are off. Solution: Insert a space where appropriate. (Taro Muraoka)
* updated for version 7.3.875v7.3.875Bram Moolenaar2013-03-212-2/+4
| | | | | Problem: Build problem with some combination of features. Solution: Use FEAT_XCLIPBOARD instead of FEAT_CLIPBOARD.
* updated for version 7.3.874v7.3.874Bram Moolenaar2013-03-193-22/+30
| | | | | | Problem: Comparing file names does not handle multi-byte characters properly. Solution: Implement multi-byte handling.
* updated for version 7.3.873v7.3.873Bram Moolenaar2013-03-196-14/+31
| | | | | Problem: Cannot easily use :s to make title case. Solution: Have "\L\u" result in title case. (James McCoy)
* updated for version 7.3.872v7.3.872Bram Moolenaar2013-03-1913-76/+55
| | | | | | | Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'.
* updated for version 7.3.871v7.3.871Bram Moolenaar2013-03-194-0/+24
| | | | | | Problem: search('^$', 'c') does not use the empty match under the cursor. Solution: Special handling of the 'c' flag. (Christian Brabandt) Add tests.
* updated for version 7.3.870v7.3.870Bram Moolenaar2013-03-196-24/+28
| | | | | Problem: Compiler warnings when using MingW 4.5.3. Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
* updated for version 7.3.869v7.3.869Bram Moolenaar2013-03-197-16/+40
| | | | | | Problem: bufwinnr() matches buffers in other tabs. Solution: For bufwinnr() and ? only match buffers in the current tab. (Alexey Radkov)
* updated for version 7.3.868v7.3.868Bram Moolenaar2013-03-192-4/+19
| | | | | | | Problem: When at the hit-return prompt and using "k" while no text has scrolled off screen, then using "j", an empty line is displayed. Solution: Only act on "k" when text scrolled off screen. Also accept page-up and page-down. (cptstubing)
* updated for version 7.3.867v7.3.867Bram Moolenaar2013-03-198-1/+60
| | | | | | Problem: Matchparen does not update match when using auto-indenting. (Marc Aldorasi) Solution: Add the TextChanged and TextChangedI autocommand events.
* updated for version 7.3.866v7.3.866Bram Moolenaar2013-03-192-10/+66
| | | | | | Problem: Not serving the X selection during system() isn't nice. Solution: When using fork() do not loose the selection, keep serving it. Add a loop similar to handling I/O. (Yukihiro Nakadaira)
* Update runtime files.Bram Moolenaar2013-03-1926-433/+734
|
* updated for version 7.3.865v7.3.865Bram Moolenaar2013-03-162-0/+14
| | | | | Problem: Mouse position may be wrong. Solution: Let vungetc() restore the mouse position.
* updated for version 7.3.864v7.3.864Bram Moolenaar2013-03-162-0/+4
| | | | | Problem: Can't build without the mouse feature. Solution: Add an #ifdef. (Ike Devolder)
* updated for version 7.3.863v7.3.863Bram Moolenaar2013-03-162-4/+9
| | | | | Problem: Problem with 'ambiwidth' detection for ANSI terminal. Solution: Work around not recognizing a term response. (Hayaki Saito)
* updated for version 7.3.862v7.3.862Bram Moolenaar2013-03-165-45/+63
| | | | | Problem: Dragging the status line can be slow. Solution: Look ahead and drop the drag event if there is a next one.
* updated for version 7.3.861v7.3.861Bram Moolenaar2013-03-134-13/+78
| | | | | Problem: ":setlocal number" clears global value of 'relativenumber'. Solution: Do it properly. (Markus Heidelberg)
* updated for version 7.3.860v7.3.860Bram Moolenaar2013-03-132-4/+10
| | | | | Problem: When using --remote-expr try/catch does not work. (Andrey Radev) Solution: Set emsg_silent instead of emsg_off.
* updated for version 7.3.859v7.3.859Bram Moolenaar2013-03-136-12/+100
| | | | | | Problem: 'ambiwidth' must be set by the user. Solution: Detects East Asian ambiguous width (UAX #11) state of the terminal at the start-up time and 'ambiwidth' accordingly. (Hayaki Saito)
* updated for version 7.3.858v7.3.858Bram Moolenaar2013-03-134-1/+30
| | | | | Problem: "gv" selects the wrong area after some operators. Solution: Save and restore the type of selection. (Christian Brabandt)