ac8400d483
updated for version 7.4.155
...
Problem: ":keeppatterns /pat" does not keep search pattern offset.
Solution: Restore the offset after doing the search.
2014-01-14 21:31:34 +01:00
8822a9c367
updated for version 7.4.154
...
Problem: Still a problem with auto-loading.
Solution: Pass no_autoload to deref_func_name(). (Yukihiro Nakadaira)
2014-01-14 19:44:34 +01:00
5395e7afe9
updated for version 7.4.153
...
Problem: Compiler warning for pointer type.
Solution: Add type cast.
2014-01-14 19:35:56 +01:00
1028f4d75e
updated for version 7.4.152
...
Problem: Python: Cannot iterate over options.
Solution: Add options iterator. (ZyX)
2014-01-14 16:55:00 +01:00
063a46ba77
updated for version 7.4.151
...
Problem: Python: slices with steps are not supported.
Solution: Support slices in Python vim.List. (ZyX)
2014-01-14 16:36:51 +01:00
14177b77bf
updated for version 7.4.150
...
Problem: :keeppatterns is not respected for :s.
Solution: Check the keeppatterns flag. (Yasuhiro Matsumoto)
2014-01-14 15:53:51 +01:00
6d977d6c1c
updated for version 7.4.149
...
Problem: Get E685 error when assigning a function to an autoload variable.
(Yukihiro Nakadaira)
Solution: Instead of having a global no_autoload variable, pass an autoload
flag down to where it is used. (ZyX)
2014-01-14 15:24:39 +01:00
ca058dc71f
updated for version 7.4.148
...
Problem: Cannot build with Cygwin and X11.
Solution: Include Xwindows.h instead of windows.h. (Lech Lorens)
2014-01-14 13:26:21 +01:00
6cd3aeee4c
updated for version 7.4.147
...
Problem: Cursor moves to wrong position when using "gj" after "$" and
virtual editing is active.
Solution: Make "gj" behave differently when virtual editing is active.
(Hirohito Higashi)
2014-01-14 13:18:58 +01:00
2cd3696c35
updated for version 7.4.146
...
Problem: When starting Vim with "-u NONE" v:oldfiles is NULL.
Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto)
2014-01-14 12:57:05 +01:00
32b9201f37
updated for version 7.4.145
...
Problem: getregtype() does not return zero for unknown register.
Solution: Adjust documention: return empty string for unknown register.
Check the register name to be valid. (Yukihiro Nakadaira)
2014-01-14 12:33:36 +01:00
9d1685d1cf
updated for version 7.4.144
...
Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE.
Solution: Adjust #ifdef. (Ken Takata)
2014-01-14 12:18:45 +01:00
e21b6b2a8d
updated for version 7.4.143
...
Problem: TextChangedI is not triggered.
Solution: Reverse check for "ready". (lilydjwg)
2014-01-14 12:17:02 +01:00
b0d5c96133
updated for version 7.4.142
...
Problem: On MS-Windows 8 IME input doen't work correctly.
Solution: Work around the problem. (Nobuhiro Takasaki)
2014-01-12 13:24:51 +01:00
78cf3f0de9
updated for version 7.4.141
...
Problem: Problems when building with Borland: st_mode is signed short;
can't build with Python; temp files not ignored by Mercurial;
building with DEBUG doesn't define _DEBUG.
Solution: Fix the problems. (Ken Takata)
2014-01-10 18:16:07 +01:00
a02471e295
updated for version 7.4.140
...
Problem: Crash when wiping out buffer triggers autocommand that wipes out
only other buffer.
Solution: Do not delete the last buffer, make it empty. (Hirohito Higashi)
2014-01-10 16:43:14 +01:00
bd2dc34774
updated for version 7.4.139
...
Problem: Crash when using :cd in autocommand. (François Ingelrest)
Solution: Set w_localdir to NULL after freeing it. (Dominique Pelle)
2014-01-10 15:53:13 +01:00
4ea924e0a5
updated for version 7.4.138
...
Problem: Directory change messages are not recognized.
Solution: Fix using a character range literally. (Lech Lorens)
2014-01-10 15:32:21 +01:00
3a69e1135e
updated for version 7.4.137
...
Problem: Cannot use IME with Windows 8 console.
Solution: Change the user of ReadConsoleInput() and PeekConsoleInput().
(Yasuhiro Matsumoto)
2014-01-10 13:51:42 +01:00
b1cb35f785
updated for version 7.4.136
...
Problem: MS-Windows: When saving a file with a UNC path the file becomes
read-only.
Solution: Don't mix up Win32 attributes and Unix attributes. (Ken Takata)
2014-01-10 13:05:20 +01:00
438f67a004
Updated runtime files.
2014-01-07 06:09:28 +01:00
2fda301469
updated for version 7.4.135
...
Problem: Missing dot in MingW test Makefile.
Solution: Add the dot. (Michael Soyka)
2014-01-06 15:51:55 +01:00
5ec8305ea8
updated for version 7.4.134
...
Problem: Spurious space in MingW Makefile.
Solution: Remove the space. (Michael Soyka)
2014-01-06 15:45:10 +01:00
5f4c8406a2
updated for version 7.4.133
...
Problem: Clang warns for using NUL.
Solution: Change NUL to NULL. (Dominique Pelle)
2014-01-06 06:19:11 +01:00
3f1138e8ae
updated for version 7.4.132
...
Problem: Win32: flags and inherit_handles arguments mixed up.
Solution: Swap the argument. (cs86661)
2014-01-05 13:29:26 +01:00
4b550b4c50
Runtime file updates.
2013-12-15 10:02:33 +01:00
dedd1b0aba
updated for version 7.4.131
...
Problem: Syncbind causes E315 errors in some situations. (Liang Li)
Solution: Set and restore curbuf in ex_syncbind(). (Christian Brabandt)
2013-12-14 13:06:17 +01:00
0bd7b3f4ce
updated for version 7.4.130
...
Problem: Relative line numbers mix up windows when using folds.
Solution: Use hasFoldingWin() instead of hasFolding(). (Lech Lorens)
2013-12-14 12:48:58 +01:00
959a143f2e
updated for version 7.4.129
...
Problem: getline(-1) returns zero. (mvxxc)
Solution: Return an empty string.
2013-12-14 12:17:38 +01:00
207fd75cac
updated for version 7.4.128
...
Problem: Perl 5.18 for MSVC doesn't work.
Solution: Add check in makefile and define __inline. (Ken Takata)
2013-12-14 11:50:35 +01:00
7c0daf088e
updated for version 7.4.127
...
Problem: Perl 5.18 on Unix doesn't work.
Solution: Move workaround to after including vim.h. (Ken Takata)
2013-12-14 11:46:08 +01:00
36c85b2c46
updated for version 7.4.126
...
Problem: Compiler warnings for "const" and incompatible types.
Solution: Remove "const", add type cast. (Ken Takata)
2013-12-12 20:25:44 +01:00
dfb18411cf
Updated runtime files.
2013-12-11 18:53:29 +01:00
175d0704df
updated for version 7.4.125
...
Problem: Win32: Dealing with messages may not work for multi-byte chars.
Solution: Use pDispatchMessage(). (Ken Takata)
2013-12-11 18:36:33 +01:00
2cc8738f2f
updated for version 7.4.124
...
Problem: Win32: Getting host name does not use wide function.
Solution: Use GetComputerNameW() if possible. (Ken Takata)
2013-12-11 18:21:45 +01:00
c8020ee825
updated for version 7.4.123
...
Problem: Win32: Getting user name does not use wide function.
Solution: Use GetUserNameW() if possible. (Ken Takata)
2013-12-11 18:18:06 +01:00
910cffbb5e
updated for version 7.4.122
...
Problem: Win32: When 'encoding' is set to "utf-8" and the active codepage
is cp932 then ":grep" and other commands don't work for multi-byte
characters.
Solution: (Yasuhiro Matsumoto)
2013-12-11 17:58:35 +01:00
893b2d73d1
updated for version 7.4.121
...
Problem: Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw)
Solution: Skip over letters after ":py3".
2013-12-11 17:44:38 +01:00
fcf94d3990
updated for version 7.4.120
...
Problem: Can't build with Perl 5.18 on Linux. (Lcd 47)
Solution: Add #ifdef. (Ken Takata)
2013-12-11 17:20:19 +01:00
4ffa07081f
updated for version 7.4.119
...
Problem: Vim doesn't work well on OpenVMS.
Solution: Fix various problems. (Samuel Ferencik)
2013-12-11 17:12:37 +01:00
1d633413e5
updated for version 7.4.118
...
Problem: It's possible that redrawing the status lines causes
win_redr_custom() to be called recursively.
Solution: Protect against recursiveness. (Yasuhiro Matsumoto)
2013-12-11 15:52:01 +01:00
6b10721fa2
updated for version 7.4.117
...
Problem: Can't build with Cygwin/MingW and Perl 5.18.
Solution: Add a linker argument for the Perl library. (Cesar Romani)
Adjust CFLAGS and LIB. (Cesar Romani)
Move including inline.h further down. (Ken Takata)
2013-12-11 15:06:40 +01:00
7ba0741451
updated for version 7.4.116
...
Problem: When a mapping starts with a space, the typed space does not show
up for 'showcmd'.
Solution: Show "<20>". (Brook Hong)
2013-12-11 14:55:01 +01:00
b011af9696
updated for version 7.4.115
...
Problem: When using Zsh expanding ~abc doesn't work when the result
contains a space.
Solution: Off-by-one error in detecting the NUL. (Pavol Juhas)
2013-12-11 13:21:51 +01:00
5d7f9df8fa
updated for version 7.4.114
...
Problem: New GNU make outputs messages about changing directory in another
format.
Solution: Recognize the new format.
2013-12-11 12:22:58 +01:00
73c61633b6
updated for version 7.4.113
...
Problem: MSVC static analysis gives warnings.
Solution: Avoid the warnings and avoid possible bugs. (Ken Takata)
2013-12-07 14:48:10 +01:00
b050c64186
updated for version 7.4.112
...
Problem: The defaults for 'directory' and 'backupdir' on MS-Windows do not
include a directory that exists.
Solution: Use $TEMP.
2013-12-07 14:32:09 +01:00
c2401d62e0
updated for version 7.4.111
...
Problem: Memory leak in Python OptionsAssItem. (Ken Takata)
Solution: Call Py_XDECREF() where needed. (ZyX)
2013-12-07 14:28:43 +01:00
ba2d44f338
updated for version 7.4.110
...
Problem: "gUgn" cannot be repeeated. (Dimitar Dimitrov)
Solution: Don't put "gn" in a different order in the redo buffer. Restore
'wrapscan' when the pattern isn't found. (Christian Wellenbrock)
2013-11-28 19:27:30 +01:00
b95186fd36
updated for version 7.4.109
...
Problem: ColorScheme autocommand matches with the current buffer name.
Solution: Match with the colorscheme name. (Christian Brabandt)
2013-11-28 18:53:52 +01:00
34b466edfe
updated for version 7.4.108
...
Problem: "zG" and "zW" leave temp files around on MS-Windows.
Solution: Delete the temp files when exiting. (Ken Takata)
2013-11-28 17:41:46 +01:00
9fee7d4729
updated for version 7.4.107
...
Problem: Python: When vim.eval() encounters a Vim error, a try/catch in the
Python code doesn't catch it. (Yggdroot Chen)
Solution: Throw exceptions on errors in vim.eval(). (ZyX)
2013-11-28 17:04:43 +01:00
e88a5f3a2c
updated for version 7.4.106
...
Problem: Can't build with Ruby using Cygwin.
Solution: Fix library name in makefile. (Steve Hall)
2013-11-28 16:32:38 +01:00
dff54ac7e8
updated for version 7.4.105
...
Problem: Completing a tag pattern may give an error for invalid pattern.
Solution: Suppress the error, just return no matches.
2013-11-28 14:36:33 +01:00
174a848b67
updated for version 7.4.104
...
Problem: ":help s/\_" reports an internal error. (John Beckett)
Solution: Check for NUL and invalid character classes.
2013-11-28 14:20:17 +01:00
3678208477
Updated runtime files.
2013-11-28 13:53:34 +01:00
c62a644eaf
updated for version 7.4.103
...
Problem: Dos installer uses an old way to escape spaces in the diff
command.
Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz)
2013-11-21 18:13:37 +01:00
ace8d8ee2f
updated for version 7.4.102
...
Problem: Crash when interrupting "z=".
Solution: Add safety check for word length. (Christian Brabandt, Dominique
Pelle)
2013-11-21 17:42:31 +01:00
438ee5bf60
updated for version 7.4.101
...
Problem: Using \1 in pattern goes one line too far. (Bohr Shaw, John Little)
Solution: Only advance the match end for the matched characters in the last
line.
2013-11-21 17:13:00 +01:00
272fb58236
updated for version 7.4.100
...
Problem: NFA regexp doesn't handle backreference correctly. (Ryuichi
Hayashida, Urtica Dioica)
Solution: Always add NFA_SKIP, also when it already exists at the start
position.
2013-11-21 16:03:40 +01:00
cafaa8a950
updated for version 7.4.099
...
Problem: Append in blockwise Visual mode with "$" is wrong.
Solution: After "$" don't use the code that checks if the cursor was moved.
(Hirohito Higashi, Ken Takata)
2013-11-21 14:40:04 +01:00
d07c6e1e82
updated for version 7.4.098
...
Problem: When using ":'<,'>del" errors may be given for the visual line
numbers being out of range.
Solution: Reset Visual mode in ":del". (Lech Lorens)
2013-11-21 14:21:40 +01:00
1e42f7ac16
updated for version 7.4.097
...
Problem: Unexpected behavior change related to 'virtualedit'. (Ingo Karkat)
Solution: Update the valid cursor position. (Christian Brabandt)
2013-11-21 13:24:41 +01:00
ffa2220950
updated for version 7.4.096
...
Problem: Can't change directory to an UNC path.
Solution: Use win32_getattrs() in mch_getperm(). (Christian Brabandt)
2013-11-21 12:34:11 +01:00
49b10273f0
updated for version 7.4.095
...
Problem: Regexp for LuaJIT version doesn't work on BSD.
Solution: Use "*" instead of "\+" and "\?". (Ozaki)
2013-11-21 12:17:51 +01:00
49b6a57d19
updated for version 7.4.094
...
Problem: Configure may not find that -lint is needed for gettext().
Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire)
2013-11-17 20:32:54 +01:00
9421bdc2cd
updated for version 7.4.093
...
Problem: Configure can't use LuaJIT on ubuntu 12.04.
Solution: Adjust the configure regexp that locates the version number.
(Charles Strahan)
2013-11-17 20:17:12 +01:00
4b60a6cdb3
Update runtime files.
2013-11-14 05:48:46 +01:00
2593e037c9
updated for version 7.4.092
...
Problem: Can't build small version.
Solution: Add #ifdef where the b_cjk flag is used. (Ken Takata)
2013-11-14 03:54:07 +01:00
e874744e94
updated for version 7.4.091
...
Problem: Missing semicolon.
Solution: Add the semicolon.
2013-11-12 18:09:29 +01:00
8f5610df73
updated for version 7.4.090
...
Problem: Win32: When a directory name contains an exclamation mark,
completion doesn't complete the contents of the directory.
Solution: Escape the exclamation mark. (Jan Stocker)
2013-11-12 05:28:26 +01:00
0671de335f
updated for version 7.4.089
...
Problem: When editing a file in a directory mounted through sshfs Vim
doesn't set the security context on a renamed file.
Solution: Add mch_copy_sec() to vim_rename(). (Peter Backes)
2013-11-12 05:12:03 +01:00
cc63c647ee
updated for version 7.4.088
...
Problem: When spell checking is enabled Asian characters are always marked
as error.
Solution: When 'spelllang' contains "cjk" do not mark Asian characters as
error. (Ken Takata)
2013-11-12 04:44:01 +01:00
efe06f4dd8
updated for version 7.4.087
...
Problem: Compiler warning on 64 bit Windows systems.
Solution: Fix type cast. (Mike Williams)
2013-11-11 23:17:39 +01:00
0f8de8dfb2
updated for version 7.4.086
...
Problem: Skipping over an expression when not evaluating it does not work
properly for dict members.
Solution: Skip over unrecognized expression. (ZyX)
2013-11-11 04:25:53 +01:00
3f75e422be
updated for version 7.4.085
...
Problem: When inserting text in Visual block mode and moving the cursor the
wrong text gets repeated in other lines.
Solution: Use the '[ mark to find the start of the actually inserted text.
(Christian Brabandt)
2013-11-11 01:29:22 +01:00
d6b8a5253b
updated for version 7.4.084
...
Problem: Python: interrupt not being properly discarded. (Yggdroot Chen)
Solution: Discard interrupt in VimTryEnd. (ZyX)
2013-11-11 01:05:48 +01:00
a939e43440
updated for version 7.4.083
...
Problem: It's hard to avoid adding a used pattern to the search history.
Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
2013-11-09 05:30:26 +01:00
8e69b4a319
Updated runtime files.
2013-11-09 03:41:58 +01:00
45d3b1454c
updated for version 7.4.082
...
Problem: Using "gf" in a changed buffer suggests adding "!", which is not
possible. (Tim Chase)
Solution: Pass a flag to check_changed() wether adding ! make sense.
2013-11-09 03:31:51 +01:00
815135e408
updated for version 7.4.081
...
Problem: Wrong logic when ANALYZE is "yes".
Solution: Use or instead of and. (KF Leong)
2013-11-09 02:32:18 +01:00
817a8801d7
updated for version 7.4.080
...
Problem: Missing documentation for v:hlsearch.
Solution: Include the right file in the patch.
2013-11-09 01:44:43 +01:00
8050efa07d
updated for version 7.4.079
...
Problem: A script cannot detect whether 'hlsearch' highlighting is actually
displayed.
Solution: Add the "v:hlsearch" variable. (ZyX)
2013-11-08 04:30:20 +01:00
e5878f4be9
updated for version 7.4.078
...
Problem: MSVC 2013 is not supported.
Solution: Recognize and support MSVC 2013. (Ed Brown)
2013-11-08 03:15:47 +01:00
03e228a623
updated for version 7.4.077
...
Problem: DOS installer creates shortcut without a path, resulting in the
current directory to be C:\Windows\system32.
Solution: Use environment variables.
2013-11-07 04:49:27 +01:00
fcea03ddd3
updated for version 7.4.076
...
Problem: "cgn" does not wrap around the end of the file. (Dimitrov
Dimitrov)
Solution: Restore 'wrapscan' earlier. (Christian Brabandt)
2013-11-07 04:46:48 +01:00
c1c023ecfc
updated for version 7.4.075
...
Problem: Locally setting 'undolevels' is not tested.
Solution: Add a test. (Christian Brabandt)
2013-11-07 03:26:06 +01:00
aa88732efd
updated for version 7.4.074
...
Problem: When undo'ing all changes and creating a new change the undo
structure is incorrect. (Christian Brabandt)
Solution: When deleting the branch starting at the old header, delete the
whole branch, not just the first entry.
2013-11-07 03:04:11 +01:00
f5a2fd880a
updated for version 7.4.073
...
Problem: Setting undolevels for one buffer changes undo in another.
Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
2013-11-06 05:26:15 +01:00
4c1e626103
updated for version 7.4.072
...
Problem: Crash when using Insert mode completion.
Solution: Avoid going past the end of pum_array. (idea by Fransisco Lopes)
2013-11-06 04:04:33 +01:00
84dbb62fca
updated for version 7.4.071
...
Problem: Passing limits around too often.
Solution: Use limits from buffer.
2013-11-06 04:01:36 +01:00
dce7c91de9
updated for version 7.4.070
...
Problem: Can't compile with tiny features. (Tony Mechelynck)
Solution: Add #ifdef.
2013-11-05 17:40:52 +01:00
6bcbcc59be
updated for version 7.4.069
...
Problem: Cannot right shift lines starting with #.
Solution: Allow the right shift when 'cino' contains #N with N > 0.
(Christian Brabandt)
Refactor parsing 'cino', store the values in the buffer.
2013-11-05 07:13:41 +01:00
0958e0fbe7
updated for version 7.4.068
...
Problem: Cannot build Vim on Mac with non-Apple compilers.
Solution: Remove the -no-cpp-precomp flag. (Misty De Meo)
2013-11-04 04:57:50 +01:00
f332a656c3
updated for version 7.4.067
...
Problem: After inserting comment leader, CTRL-\ CTRL-O does move the
cursor. (Wiktor Ruben)
Solution: Avoid moving the cursor. (Christian Brabandt)
2013-11-04 04:20:33 +01:00
69c3500f96
updated for version 7.4.066
...
Problem: MS-Windows: When there is a colon in the file name (sub-stream
feature) the swap file name is wrong.
Solution: Change the colon to "%". (Yasuhiro Matsumoto)
2013-11-04 02:54:12 +01:00
332a2cadcd
updated for version 7.4.065
...
Problem: When recording, the character typed at the hit-enter prompt is
recorded twice. (Urtica Dioica)
Solution: Avoid recording the character twice. (Christian Brabandt)
2013-11-04 02:01:01 +01:00
d9820538bd
updated for version 7.4.064
...
Problem: When replacing a character in Visual block mode, entering a CR
does not cause a repeated line break.
Solution: Recognize the situation and repeat the line break. (Christian
Brabandt)
2013-11-04 01:41:17 +01:00
ba2d7ffc4b
updated for version 7.4.063
...
Problem: Crash when using invalid key in Python dictionary.
Solution: Check for object to be NULL. Add tests. (ZyX)
2013-11-04 00:34:53 +01:00
d5d015d457
Update runtime files.
2013-11-03 21:14:31 +01:00
18e5469b6e
updated for version 7.4.062
...
Problem: Configure check for AvailabilityMacros.h is wrong.
Solution: Use AC_CHECK_HEADERS().
2013-11-03 20:26:31 +01:00
39766a7595
updated for version 7.4.061
...
Problem: Availability macros configure check in wrong place.
Solution: Also check when not using Darwin. Remove version check.
2013-11-03 00:41:00 +01:00
0b400087d0
updated for version 7.4.060
...
Problem: Declaration has wrong return type for PyObject_SetAttrString().
Solution: Use int instead of PyObject. (Andreas Schwab)
2013-11-03 00:28:25 +01:00
9db1293317
updated for version 7.4.059
...
Problem: set_last_cursor() may encounter w_buffer being NULL. (Matt
Mkaniaris)
Solution: Check for NULL.
2013-11-03 00:20:52 +01:00
92c2db8be6
updated for version 7.4.058
...
Problem: Warnings on 64 bit Windows.
Solution: Add type casts. (Mike Williams)
2013-11-02 23:59:35 +01:00
0ffbbf9ea8
updated for version 7.4.057
...
Problem: byteidx() does not work for composing characters.
Solution: Add byteidxcomp().
2013-11-02 23:29:26 +01:00
4cc95d1495
updated for version 7.4.056
...
Problem: Mac: Compilation problem with OS X 10.9 Mavericks.
Solution: Include AvailabilityMacros.h when available. (Kazunobu Kuriyama)
2013-11-02 21:49:32 +01:00
2b1b53f5d9
updated for version 7.4.055
...
Problem: Mac: Where availability macros are defined depends on the system.
Solution: Add a configure check. (Felix Bünemann)
2013-11-02 21:04:38 +01:00
1180822670
updated for version 7.4.054
...
Problem: Reading past end of the 'stl' string.
Solution: Don't increment pointer when already at the NUL. (Christian
Brabandt)
2013-11-02 04:39:38 +01:00
b69a714bb7
updated for version 7.4.053
...
Problem: Test75 has a wrong header. (ZyX)
Solution: Fix the text and remove leading ".
2013-11-02 04:19:34 +01:00
2c019c8696
updated for version 7.4.052
...
Problem: With 'fo' set to "a2" inserting a space in the first column may
cause the cursor to jump to the previous line.
Solution: Handle the case when there is no comment leader properly. (Tor
Perkins) Also fix that cursor is in the wrong place when spaces
get replaced with a Tab.
2013-10-06 17:46:56 +02:00
a951e35478
updated for version 7.4.051
...
Problem: Syntax highlighting a Yaml file causes a crash. (Blake Preston)
Solution: Copy the pim structure before calling addstate() to avoid it
becoming invalide when the state list is reallocated.
2013-10-06 15:46:11 +02:00
b133208080
Runtime file updates.
2013-10-06 14:22:40 +02:00
4c7cb6b884
updated for version 7.4.050
...
Problem: "gn" selects too much for the pattern "\d" when there are two
lines with a single digit. (Ryan Carney)
Solution: Adjust the logic of is_one_char(). (Christian Brabandt)
2013-10-02 21:55:02 +02:00
3eead7c227
updated for version 7.4.049
...
Problem: In Ex mode, when line numbers are enabled the substitute prompt is
wrong.
Solution: Adjust for the line number size. (Benoit Pierre)
2013-10-02 18:43:06 +02:00
0c6ccfdb62
updated for version 7.4.048
...
Problem: Recent clang version complains about -fno-strength-reduce.
Solution: Add a configure check for the clang version. (Kazunobu Kuriyama)
2013-10-02 18:23:07 +02:00
35a7c681bc
updated for version 7.4.047
...
Problem: When using input() in a function invoked by a mapping it doesn't
work.
Solution: Temporarily reset ex_normal_busy. (Yasuhiro Matsumoto)
2013-10-02 16:46:28 +02:00
0b4db6b6e5
updated for version 7.4.046
...
Problem: Can't use Tcl 8.6.
Solution: Change how Tcl_FindExecutable is called. (Jan Nijtmans)
2013-10-02 14:25:44 +02:00
ceb84af027
updated for version 7.4.045
...
Problem: substitute() does not work properly when the pattern starts with
"\ze".
Solution: Detect an empty match. (Christian Brabandt)
2013-09-29 21:11:05 +02:00
8962fda1da
updated for version 7.4.044
...
Problem: Can't build with old MSVC. (Wang Shoulin)
Solution: Define OPEN_OH_ARGTYPE instead of using intptr_t directly.
2013-09-29 19:05:21 +02:00
386dcde30d
updated for version 7.4.043
...
Problem: VMS can't handle long function names.
Solution: Shorten may_req_ambiguous_character_width. (Samuel Ferencik)
2013-09-29 16:27:47 +02:00
7a18fdc8a4
updated for version 7.4.042
...
Problem: When using ":setlocal" for 'spell' and 'spellang' then :spelldump
doesn't work. (Dimitar Dimitrov)
Solution: Copy the option variables to the new window used to show the dump.
(Christian Brabandt)
2013-09-29 13:38:29 +02:00
033d8888e8
updated for version 7.4.041
...
Problem: Visual selection does not remain after being copied over. (Axel
Bender)
Solution: Move when VIsual_active is reset. (Christian Brabandt)
2013-09-25 23:24:57 +02:00
cca7413456
updated for version 7.4.040
...
Problem: Valgrind error on exit when a script-local variable holds a
reference to the scope of another script.
Solution: First clear all variables, then free the scopes. (ZyX)
2013-09-25 21:00:28 +02:00
2ee95f7d13
updated for version 7.4.039
...
Problem: MS-Windows: MSCV10 and earlier can't handle symlinks to a
directory properly.
Solution: Add stat_symlink_aware() and wstat_symlink_aware(). (Ken Takata)
2013-09-25 19:13:38 +02:00
134bf07ca0
updated for version 7.4.038
...
Problem: Using "zw" and "zg" when 'spell' is off give a confusing error
message. (Gary Johnson)
Solution: Ignore the error when locating the word. Explicitly mention what
word was added. (Christian Brabandt)
2013-09-25 18:54:24 +02:00
f211884fa1
updated for version 7.4.037
...
Problem: Using "\ze" in a sub-pattern does not result in the end of the
match to be set. (Axel Bender)
Solution: Copy the end of match position when a recursive match was
successful.
2013-09-25 18:16:38 +02:00
699c12076d
updated for version 7.4.036
...
Problem: NFA engine does not capture group correctly when using \@>. (ZyX)
Solution: Copy submatches before doing the recursive match.
2013-09-25 16:41:54 +02:00
18441ae2cd
Fix problem with 'iskeyword' in CSS syntax.
2013-09-24 23:30:38 +02:00
268b55b5fb
updated for version 7.4.035
...
Problem: MS-Windows: The mouse pointer flickers when going from command
line mode to Normal mode.
Solution: Check for WM_NCMOUSEMOVE. (Ken Takata)
2013-09-22 15:43:37 +02:00
ec11aef914
updated for version 7.4.034
...
Problem: Using "p" in Visual block mode only changes the first line.
Solution: Repeat the put in all text in the block. (Christian Brabandt)
2013-09-22 15:23:44 +02:00
6848c8b561
updated for version 7.4.033
...
Problem: When the terminal has only 20 lines test 92 and 93 overwrite the
input file.
Solution: Explicitly write test.out. Check that the terminal is large enough
to run the tests. (Hirohito Higashi)
2013-09-22 15:03:38 +02:00
baca7f705b
Update runtime files. Add support for J.
2013-09-22 14:42:24 +02:00
595cad2ea1
updated for version 7.4.032
...
Problem: NFA engine does not match the NUL character. (Jonathon Merz)
Solution: Ues 0x0a instead of NUL. (Christian Brabandt)
2013-09-22 13:57:24 +02:00
00462ffb7d
updated for version 7.4.031
...
Problem: ":diffoff!" resets options even when 'diff' is not set. (Charles
Cooper)
Solution: Only resets related options in a window where 'diff' is set.
2013-09-20 20:13:53 +02:00
9952c102dd
updated for version 7.4.030
...
Problem: The -mno-cygwin argument is no longer supported by Cygwin.
Solution: Remove the arguments. (Steve Hall)
2013-09-19 20:49:04 +02:00
745c6eb29b
Add files missing from 7.4.028.
2013-09-19 17:04:30 +02:00
917789fdf7
updated for version 7.4.029
...
Problem: An error in a pattern is reported twice.
Solution: Remove the retry with the backtracking engine, it won't work.
2013-09-19 17:04:01 +02:00
e6a2fa6573
updated for version 7.4.028
...
Problem: Equivalence classes are not working for multi-byte characters.
Solution: Copy the rules from the old to the new regexp engine. Add a test
to check both engines.
2013-09-19 17:00:20 +02:00
dd40734800
updated for version 7.4.027
...
Problem: Another valgrind error when using CTRL-X CTRL-F at the start of
the line. (Dominique Pelle)
Solution: Don't call mb_ptr_back() at the start of the line. Add a test.
2013-09-08 20:00:48 +02:00
95235e64d8
updated for version 7.4.026
...
Problem: Clang warning for int shift overflow.
Solution: Use unsigned and cast back to int. (Dominique Pelle)
2013-09-08 16:07:07 +02:00
0300e465aa
updated for version 7.4.025
...
Problem: Reading before start of a string.
Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle)
2013-09-08 16:03:45 +02:00
3b26239341
updated for version 7.4.024
...
Problem: When root edits a file the undo file is owned by root while the
edited file may be owned by another user, which is not allowed.
(cac2s)
Solution: Accept an undo file owned by the current user.
2013-09-08 15:40:49 +02:00
3b7ac49e26
updated for version 7.4.023
...
Problem: Compiler warning on 64 bit windows.
Solution: Add type cast. (Mike Williams)
2013-09-07 16:35:42 +02:00
7cba6c0636
Updated runtime files.
2013-09-05 22:13:31 +02:00
bec9c20884
updated for version 7.4.022
...
Problem: Deadlock while exiting, because of allocating memory.
Solution: Do not use gettext() in deathtrap(). (James McCoy)
2013-09-05 21:41:39 +02:00
9be4481892
updated for version 7.4.021
...
Problem: NFA regexp: Using \ze in one branch which doesn't match may cause
end of another branch to be wrong. (William Fugh)
Solution: Set end position if it wasn't set yet.
2013-09-05 21:15:44 +02:00
78c93e4b6a
updated for version 7.4.020
...
Problem: NFA engine matches too much with \@>. (John McGowan)
Solution: When a whole pattern match is found stop searching.
2013-09-05 16:05:36 +02:00
00b764aa41
updated for version 7.4.019
...
Problem: MS-Windows: File name completion doesn't work properly with
Chinese characters. (Yue Wu)
Solution: Take care of multi-byte characters when looking for the start of
the file name. (Ken Takata)
2013-09-05 13:50:53 +02:00
f0d9e00537
updated for version 7.4.018
...
Problem: When completing item becomes unselected. (Shougo Matsu)
Solution: Revert patch 7.3.1269.
2013-09-05 12:49:52 +02:00
966d71c852
updated for version 7.4.017
...
Problem: ":help !!" does not find the "!!" tag in the help file. (Ben
Fritz)
Solution: When reading the start of the tags file do parse lines that are
not header lines.
2013-09-05 12:06:33 +02:00
65f04f67f1
updated for version 7.4.016
...
Problem: MS-Windows: File name completion doesn't work properly with
Chinese characters. (Yue Wu)
Solution: Add fname_casew(). (Ken Takata)
2013-08-30 17:29:16 +02:00
4dee1bb0db
updated for version 7.4.015
...
Problem: MS-Windows: Detecting node type does not work for multi-byte
characters.
Solution: Use wide character function when needed. (Ken Takata)
2013-08-30 17:11:33 +02:00
4e4f529792
updated for version 7.4.014
...
Problem: MS-Windows: check for writing to device does not work.
Solution: Fix #ifdefs. (Ken Takata)
2013-08-30 17:07:01 +02:00
d2a203bb58
updated for version 7.4.013
...
Problem: File name buffer too small for utf-8.
Solution: Use character count instead of byte count. (Ken Takata)
2013-08-30 16:51:18 +02:00
604729e75b
updated for version 7.4.012
...
Problem: MS-Windows: resolving shortcut does not work properly with
multi-byte characters.
Solution: Use wide system functions. (Ken Takata)
2013-08-30 16:44:19 +02:00
b5ef5e1c21
updated for version 7.4.011
...
Problem: Cannot find out if "acl" and "xpm" features are supported.
Solution: Add "acl" and "xpm" to the list of features. (Ken Takata)
2013-08-30 16:35:44 +02:00
195ef0ccb2
updated for version 7.4.010
...
Problem: Crash with invalid argument to mkdir().
Solution: Check for empty string. (lcd47)
2013-08-30 16:00:08 +02:00
cf81aefd9c
updated for version 7.4.009
...
Problem: When a file was not decrypted (yet), writing it may destroy the
contents.
Solution: Mark the file as readonly until decryption was done. (Christian
Brabandt)
2013-08-25 17:46:08 +02:00
41f1205fef
updated for version 7.4.008
...
Problem: New regexp engine can't be interrupted.
Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto)
2013-08-25 17:01:42 +02:00
74cd624fde
updated for version 7.4.007
...
Problem: Creating a preview window on startup leaves the screen layout in a
messed up state. (Marius Gedminas)
Solution: Don't change firstwin. (Christian Brabandt)
2013-08-22 14:14:27 +02:00
67652c2935
updated for version 7.4.006
...
Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett)
Solution: Remove the trailing slash. (lcd)
2013-08-22 12:06:55 +02:00
c56c459075
updated for version 7.4.005
...
Problem: Using "vaB" while 'virtualedit' is set selects the wrong area.
(Dimitar Dimitrov)
Solution: Reset coladd when finding a match.
2013-08-14 17:45:29 +02:00
c93df6b075
updated for version 7.4.004
...
Problem: When closing a window fails ":bwipe" may hang.
Solution: Let win_close() return FAIL and break out of the loop.
2013-08-14 17:11:20 +02:00
ebefd997bb
updated for version 7.4.003
...
Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow)
Solution: Refresh stale pointer. (James McCoy)
2013-08-14 14:18:40 +02:00
3f0df06c28
updated for version 7.4.002
...
Problem: Pattern with two alternative look-behind matches does not match.
(Amadeus Demarzi)
Solution: When comparing PIMs also compare their state ID to see if they are
different.
2013-08-14 13:34:25 +02:00
1cfad52a03
updated for version 7.4.001
...
Problem: Character classes such as [a-z] to not react to 'ignorecase'.
Breaks man page highlighting. (Mario Grgic)
Solution: Add separate items for classes that react to 'ignorecase'. Clean
up logic handling character classes. Add more tests.
2013-08-14 12:06:49 +02:00
3b1db36689
release version 7.4
2013-08-10 15:00:24 +02:00
b7512b79ce
updated for version 7.4b.022
...
Problem: Not waiting for a character when the tick count overflows.
Solution: Subtract the unsigned numbers and cast to int. (Ken Takata)
2013-08-10 12:45:09 +02:00
b09129684b
updated for version 7.4b.021
...
Problem: Pressing "u" after an external command results in multiple
press-enter messages. (glts)
Solution: Don't call hit_return_msg() when we have K_IGNORE. (Christian
Brabandt)
2013-08-09 20:38:26 +02:00
f17968b54a
updated for version 7.4b.020
...
Problem: "g~ap" changes first character of next paragraph. (Manuel Ortega)
Solution: Avoid subtracting (0 - 1) from todo. (Mike Williams)
2013-08-09 19:48:40 +02:00
86f931e1c3
updated for version 7.4b.019
...
Problem: Tabline is not updated properly when closing a tab on Win32.
Solution: Only reduce flickering when adding a tab. (Ken Takata)
2013-08-07 21:13:23 +02:00
a95d823554
updated for version 7.4b.018
...
Problem: Win32: Dialog can still be too big.
Solution: Move the check for height further down. (Andrei Olsen)
2013-08-07 15:27:11 +02:00
d82db6046c
updated for version 7.4b.017
...
Problem: ":he \^x" gives a strange error message. (glts)
Solution: Do not translate \^x to \_CTRL-x.
2013-08-07 15:24:41 +02:00
026a445c40
updated for version 7.4b.016
...
Problem: Ruby detection fails on Fedora 19.
Solution: Use one way to get the Ruby version. (Michael Henry)
2013-08-07 15:22:23 +02:00
01c458e438
updated for version 7.4b.015
...
Problem: Can't compile without the 'acd' feature.
Solution: Add #ifdefs. (Kazunobu Kuriyama)
2013-08-05 22:02:20 +02:00
9d98fe9cae
Update runtime files.
2013-08-03 18:35:36 +02:00
f40f4ab8df
updated for version 7.4b.014
...
Problem: Stupid mistake.
Solution: Changle "len" to "i".
2013-08-03 17:31:28 +02:00
48483dbaf7
updated for version 7.4b.013
...
Problem: Install dir for JP man pages is wrong.
Solution: Remove ".UTF-8" from the directory name. (Ken Takata)
2013-08-03 17:21:26 +02:00
fb332a2b33
updated for version 7.4b.012
...
Problem: Output from a shell command is truncated at a NUL. (lcd 47)
Solution: Change every NUL into an SOH.
2013-08-03 14:10:50 +02:00
c528b1d1ed
updated for version 7.4b.011
...
Problem: ":he \%(\)" does not work. (ZyX)
Solution: Add an exception to the list.
2013-08-03 13:41:15 +02:00
364ab2ffd3
updated for version 7.4b.010
...
Problem: Win32: Tcl library load does not use standard mechanism.
Solution: Call vimLoadLib() instead of LoadLibraryEx(). (Ken Takata)
2013-08-02 20:05:32 +02:00
bc88a27537
updated for version 7.4b.009
...
Problem: When setting the Visual area manually and 'selection' is
exclusive, a yank includes one character too much. (Ingo Karkat)
Solution: Default the Visual operation to "v". (Christian Brabandt)
2013-08-02 17:22:23 +02:00
4008f4fb08
updated for version 7.4b.008
...
Problem: 'autochdir' causes setbufvar() to change the current directory.
(Ben Fritz)
Solution: When disabling autocommands also reset 'acd' temporarily.
(Christian Brabandt)
2013-08-02 17:08:13 +02:00
aee1f4a5b5
updated for version 7.4b.007
...
Problem: On 32 bit MS-Windows :perldo does not work.
Solution: Make sure time_t uses 32 bits. (Ken Takata)
2013-08-02 16:10:32 +02:00
a946afe075
updated for version 7.4b.006
...
Problem: Using \{n,m} in an autocommand pattern no longer works.
Specifically, mutt temp files are not recognized. (Gary Johnson)
Solution: Make \\\{n,m\} work.
2013-08-02 15:22:39 +02:00
542805a59d
updated for version 7.4b.005
...
Problem: Finding %s in shellpipe and shellredir does not ignore %%s.
Solution: Skip over %%. (lcd 47)
2013-08-02 14:15:13 +02:00
eec3e1e72a
updated for version 7.4b.004
...
Problem: Regexp crash on pattern "@\%[\w\-]*". (Axel Kielhorn)
Solution: Add \%(\) around \%[] internally.
2013-08-01 18:38:26 +02:00
6dbe68cd9e
updated for version 7.4b.003
...
Problem: Regexp code is not nicely aligned.
Solution: Adjust white space. (Ken Takata)
2013-08-01 16:21:34 +02:00
398d53decf
updated for version 7.4b.002
...
Problem: Crash searching for \%(\%(\|\d\|-\|\.\)*\|\*\). (Marcin
Szamotulski) Also for \(\)*.
Solution: Do add a state for opening parenthesis, so that we can check if it
was added before at the same position.
2013-08-01 15:45:52 +02:00
1b1b09449f
updated for version 7.4b.001
...
Problem: Win32: dialog may extend off-screen.
Solution: Reduce the size, use correct borders. (Andrei Olsen)
2013-08-01 13:20:42 +02:00
1a42b4befb
Update files for the 7.4b BETA release.
2013-07-28 18:29:08 +02:00
1a4a75c5dc
updated for version 7.4a.047
...
Problem: Some comments are not so nice.
Solution: Change the comments.
2013-07-28 16:03:06 +02:00
16ea3676db
Updated runtime files.
2013-07-28 16:02:18 +02:00
a2320f43ea
updated for version 7.4a.046
...
Problem: Can't build without mbyte feature.
Solution: Add #ifdefs.
2013-07-28 15:16:19 +02:00
e855ccf90a
updated for version 7.4a.045
...
Problem: Configure does not always find the right library for Lua. Missing
support for LuaJit.
Solution: Improve the configure detection of Lua. (Hiroshi Shirosaki)
2013-07-28 13:32:15 +02:00
e2db695d31
Updated runtime files.
2013-07-24 19:53:36 +02:00
ff18df03c3
updated for version 7.4a.044
...
Problem: Test 96 sometimes fails.
Solution: Clear window from b_wininfo in win_free(). (Suggestion by
Yukihiro Nakadaira)
2013-07-24 17:51:57 +02:00
af003f6384
updated for version 7.4a.043
...
Problem: More ml_get errors when adding or deleting lines from Python.
(Vlad Irnov)
Solution: Switch to a window with the buffer when possible.
2013-07-24 17:11:46 +02:00
2b90ed294e
updated for version 7.4a.042
...
Problem: Crash when BufUnload autocommands close all buffers. (Andrew
Pimlott)
Solution: Set curwin->w_buffer to curbuf to avoid NULL.
2013-07-24 16:02:36 +02:00
ad875fb7ff
updated for version 7.4a.041
...
Problem: When using ":new ++ff=unix" and "dos" is first in 'fileformats'
then 'ff' is set to "dos" instead of "unix". (Ingo Karkat)
Solution: Create set_file_options() and invoke it from do_ecmd().
2013-07-24 15:02:03 +02:00
e24a9c0b59
updated for version 7.4a.040
...
Problem: Win32: using uninitialized variable.
Solution: (Yukihiro Nakadaira)
2013-07-24 13:49:22 +02:00
196ed14d15
updated for version 7.4a.039
...
Problem: New regexp engine doesn't match pattern. (Ingo Karkat)
Solution: When adding a state also check for different PIM if the list of
states has any state with a PIM.
2013-07-21 18:59:24 +02:00
9d48895e4c
updated for version 7.4a.038
...
Problem: When using MSVC 2012 there are various issues, including GUI size
computations.
Solution: Use SM_CXPADDEDBORDER. (Mike Williams)
2013-07-21 17:53:58 +02:00
5f919ee8eb
updated for version 7.4a.037
...
Problem: Win32: When mouse is hidden and in the toolbar, moving it won't
make it appear. (Sami Salonen)
Solution: Add tabline_wndproc() and toolbar_wndproc(). (Ken Takata)
2013-07-21 17:46:43 +02:00
ac7c33e38c
updated for version 7.4a.036
...
Problem: "\p" in a regexp does not match double-width characters.
(Yukihiro Nakadaira)
Solution: Don't count display cells, use vim_isprintc().
2013-07-21 17:06:00 +02:00
9ba7e17de1
Updated runtime files.
2013-07-17 22:37:26 +02:00
e53c8616f1
updated for version 7.4a.035
...
Problem: Fix in patch 7.4a.032 is not tested.
Solution: Add test.
2013-07-17 22:35:39 +02:00
a8f96397a1
updated for version 7.4a.034
...
Problem: The tabline may flicker when opening a new tab after 7.3.759 on
Win32.
Solution: Move call to TabCtrl_SetCurSel(). (Ken Takata)
2013-07-17 21:59:13 +02:00
b7a846d0e0
updated for version 7.4a.033
...
Problem: Test 98 always passes.
Solution: Include test98a.in in test98.in, execute the crucial command in
one line. (Yukihiro Nakadaira)
2013-07-17 21:40:31 +02:00
69b52456fc
updated for version 7.4a.032
...
Problem: New regexp engine: Does not match shorter alternative. (Ingo
Karkat)
Solution: Do not drop a new state when the PIM info is different.
2013-07-17 21:10:51 +02:00
de9149ef18
updated for version 7.4a.031
...
Problem: Compiler warnings. (Charles Campbell)
Solution: Initialize variables even when not needed.
2013-07-17 19:22:13 +02:00
4a3aef7b28
updated for version 7.4a.030
...
Problem: Missing find_win_for_buf(). (toothpik)
Solution: Add missing changes.
2013-07-17 19:12:57 +02:00
9e90219032
updated for version 7.4a.029
...
Problem: Can't build with MzScheme on Ubuntu 13.04.
Solution: Add configure check for the "ffi" library.
2013-07-17 18:58:11 +02:00
706d2de9c1
updated for version 7.4a.028
...
Problem: Crash when spell checking in new buffer.
Solution: Set the b_p_key field. (Mike Williams)
2013-07-17 17:35:13 +02:00
95064ece73
updated for version 7.4a.027
...
Problem: When Python adds lines to another buffer the cursor position is
wrong, it might be below the last line causing ml_get errors.
(Vlad Irnov)
Solution: Temporarily change the current window, so that marks are corrected
properly.
2013-07-17 17:15:25 +02:00
33ca6bf240
updated for version 7.4a.026
...
Problem: ":diffoff" does not remove folds. (Ramel)
Solution: Do not restore 'foldenable' when 'foldmethod' is "manual".
2013-07-17 13:43:39 +02:00
56667a5d3e
updated for version 7.4a.025
...
Problem: Get the press-Enter prompt even after using :redraw.
Solution: Clear need_wait_return when executing :redraw.
2013-07-17 11:54:28 +02:00
6f2926692b
updated for version 7.4a.024
...
Problem: X11 GUI: Checking icon height twice.
Solution: Check height and width. (Dominique Pelle)
2013-07-14 15:06:50 +02:00
6f394f88b8
updated for version 7.4a.023
...
Problem: Still another superfluous parenthesis. (ZyX)
Solution: Remove it.
2013-07-14 13:41:56 +02:00
91b2bdb083
updated for version 7.4a.022
...
Problem: Using "d2g$" does not delete the last character. (ZyX)
Solution: Set the "inclusive" flag properly.
2013-07-14 13:32:15 +02:00
ff52518969
updated for version 7.4a.021
...
Problem: Using feedkeys() doesn't always work.
Solution: Omit feedkeys(). (Ken Takata)
2013-07-14 13:02:12 +02:00
3fb14bc734
updated for version 7.4a.020
...
Problem: Superfluous mb_ptr_adv().
Solution: Remove the call. (Dominique Pelle)
2013-07-14 12:34:56 +02:00
ee31be64a3
updated for version 7.4a.019
...
Problem: Invalid closing parenthesis in test 62. Command truncated at
double quote.
Solution: Remove the parenthesis. Change double quote to ''. (ZyX)
2013-07-14 12:21:57 +02:00
690ae9c858
updated for version 7.4a.018
...
Problem: Compiler warning for code unreachable. (Charles Campbell)
Solution: Use "while" instead of endless loop. Change break to continue.
2013-07-13 20:58:11 +02:00
2b79bfdeab
updated for version 7.4a.017
...
Problem: When 'foldmethod' is "indent", using ">>" on a line just above a
fold makes the cursor line folded. (Evan Laforge)
Solution: Call foldOpenCursor(). (Christian Brabandt)
2013-07-13 16:34:32 +02:00
a0aa9070be
updated for version 7.4a.016
...
Problem: Features enabled in Makefile.
Solution: Undo accidental changes.
2013-07-13 15:39:33 +02:00
a3fe8fe632
updated for version 7.4a.015
...
Problem: No Japanese man pages.
Solution: Add Japanese translations of man pages. (Ken Takata, Yukihiro
Nakadaira, et al.)
2013-07-13 15:33:20 +02:00
8e46f7264c
updated for version 7.4a.014
...
Problem: Test 86 and 89 have a problem with using a shadow dir.
Solution: Adjust for the different directory structure. (James McCoy)
2013-07-13 14:08:16 +02:00
3ff9b185fe
updated for version 7.4a.013
...
Problem: Setting/resetting 'lbr' in the main help file changes alignment
after a Tab. (Dimitar Dimitrov)
Solution: Also use the code for conceal mode where n_extra is computed for
'lbr'.
2013-07-13 12:36:55 +02:00
fba2424cf2
updated for version 7.4a.012
...
Problem: "make test" fails when using a shadow directory.
Solution: Create links for files in src/po. (James McCoy)
2013-07-12 20:16:58 +02:00
fee496d882
updated for version 7.4a.011
...
Problem: Configure check for Python 3 config name isn't right.
Solution: Always include vi_cv_var_python3_version. (Tim Harder)
2013-07-12 20:07:24 +02:00
e741f2714d
updated for version 7.4a.010
...
Problem: Test 86 and 97 fail when building with Python or Python 3 and
using a static library.
Solution: Add configure check to add -fPIE compiler flag.
2013-07-09 21:57:52 +02:00
fb97f28cc2
updated for version 7.4a.009
...
Problem: Compiler warnings for function prototypes.
Solution: Add "void". Move list_features() prototype. (Ken Takata)
2013-07-09 17:42:46 +02:00
e032461eed
updated for version 7.4a.008
...
Problem: Python 3 doesn't handle multibyte characters prooperly when
'encoding' is not utf-8.
Solution: Use PyUnicode_Decode() instead of PyUnicode_FromString(). (Ken
Takata)
2013-07-09 17:30:55 +02:00
b69510e889
updated for version 7.4a.007
...
Problem: After "g$" with 'virtualedit' set, "k" moves to a different
column. (Dimitar Dimitrov)
Solution: Set w_curswant. (Christian Brabandt)
2013-07-09 17:08:29 +02:00
dd007ed585
Updated runtime files. Fix NL translations.
2013-07-09 15:44:17 +02:00
4ca8d5fefd
updated for version 7.4a.006
...
Problem: Failure in po file check goes unnoticed.
Solution: Fail "make test" if the po file check fails.
2013-07-09 14:58:10 +02:00
04c5c9ee27
updated for version 7.4a.005
...
Problem: Scroll binding causes unexpected scroll.
Solution: Store the topline after updating scroll binding. Add a test.
(Lech Lorens)
2013-07-09 13:44:59 +02:00
c64b85a348
updated for version 7.4a.004
...
Problem: MSVC 2012 Update 3 is not recognized.
Solution: Add the version number. (Raymond Ko)
2013-07-09 13:15:46 +02:00
f4c096b617
updated for version 7.4a.003
...
Problem: Copyright year is oudated.
Solution: Only use the first year.
2013-07-09 12:54:21 +02:00
e8785f2c39
updated for version 7.4a.002
...
Problem: Valgrind errors in test 89. (Simon Ruderich)
Solution: Allocate one more byte. (Dominique Pelle)
2013-07-07 16:15:35 +02:00
3c04cc09cd
Fix duplicate patch number 1.
2013-07-06 18:08:03 +02:00
7b8c268fc1
updated for version 7.4a.001
...
Problem: Script to update syntax menu is oudated.
Solution: Add the missing items.
(only changing the version, file was already updated)
2013-07-06 16:23:02 +02:00
913df81e74
Vim 7.4a BETA release.
2013-07-06 15:44:11 +02:00
dc8b25cbf3
Update runtime files.
2013-07-06 13:58:22 +02:00
0d86e9b568
updated for version 7.3.1314
...
Problem: Test 87 fails with Python 3.3.
Solution: Filter the error messages. (Taro Muraoka)
2013-07-06 13:54:33 +02:00
254e028e90
updated for version 7.3.1313
...
Problem: :py and :py3 don't work when compiled with Cygwin or MingW with 64
bit.
Solution: Add -DMS_WIN64 to the build command. (Ken Takata)
2013-07-06 13:35:08 +02:00
91aeaf4cce
updated for version 7.3.1312
...
Problem: Not giving correct error messages for SystemExit().
Solution: Move E858 into an else. (Ken Takata)
2013-07-06 13:02:30 +02:00
bc488a76cc
A few updated runtime files.
2013-07-05 21:01:22 +02:00
2c6f3dca4e
updated for version 7.3.1311
...
Problem: Compiler warnings on Cygwin.
Solution: Add type casts. Add windows include files. (Ken Takata)
2013-07-05 20:09:16 +02:00
266411aa8a
updated for version 7.3.1310
...
Problem: Typos in nsis script. Can use better compression.
Solution: Fix typos. Use lzma compression. (Ken Takata)
2013-07-05 20:01:32 +02:00
ccf623f6f8
updated for version 7.3.1309
...
Problem: When a script defines a function the flag to wait for the user to
hit enter is reset.
Solution: Restore the flag. (Yasuhiro Matsumoto) Except when the user was
typing the function.
2013-07-05 18:29:48 +02:00
94f76b7fd6
updated for version 7.3.1308
...
Problem: Typos in MS-Windows build settings and README.
Solution: Minor changes to MS-Windows files.
2013-07-04 22:50:40 +02:00
ba46075731
updated for version 7.3.1307
...
Problem: MS-Windows build instructions are outdated.
Solution: Adjust for building on Windows 7. Drop Windows 95/98/ME support.
2013-07-04 22:35:01 +02:00
249f0dda51
updated for version 7.3.1306
...
Problem: When redrawing the screen during startup the intro message may be
cleared.
Solution: Redisplay the intro message when appropriate.
2013-07-04 22:31:03 +02:00
61214040e9
updated for version 7.3.1305
...
Problem: Warnings from 64 bit compiler.
Solution: Add type casts.
2013-07-04 21:19:33 +02:00
a3c084cbfa
updated for version 7.3.1304
...
Problem: Test 89 still fails on MS-Windows.
Solution: Set 'shellslash'. (Taro Muraoka)
2013-07-04 20:50:46 +02:00
3c1e9c2a1f
updated for version 7.3.1303
...
Problem: Undo is synced whenever CTRL-R = is called, breaking some plugins.
Solution: Only break undo when calling setline() or append().
2013-07-04 20:25:41 +02:00
c84e3c1ee1
updated for version 7.3.1302
...
Problem: Test 17 fails on MS-Windows. Includes line break in file name
everywhere.
Solution: Fix 'fileformat'. Omit CR-LF from a line read from an included
file.
2013-07-03 22:28:36 +02:00
ee0ee2a046
updated for version 7.3.1301
...
Problem: Some tests fail on MS-Windows.
Solution: Fix path separators in test 89 and 96. Omit test 97, escaping
works differently. Make findfile() work on MS-Windows.
2013-07-03 21:19:07 +02:00
3437b91102
updated for version 7.3.1300
...
Problem: Mac: tiny and small build fails.
Solution: Don't include os_macosx.m in tiny build. Include mouse support in
small build. (Kazunobu Kuriyama)
2013-07-03 19:52:53 +02:00
32ac8cdaaa
updated for version 7.3.1299
...
Problem: Errors when doing "make proto". Didn't do "make depend" for a
while.
Solution: Add #ifdefs. Update dependencies. Update proto files.
2013-07-03 18:49:17 +02:00
0f5a5ed8bb
updated for version 7.3.1298
...
Problem: Crash.
Solution: Use STRCPY() instead of STRCAT() and allocate one more byte.
2013-07-03 17:51:17 +02:00
f4c5fcb3ad
updated for version 7.3.1297
...
Problem: findfile() directory matching does not work when a star follows
text. (Markus Braun)
Solution: Make a wildcard work properly. (Christian Brabandt)
2013-07-03 17:14:00 +02:00
8968a31179
updated for version 7.3.1296
...
Problem: Only MS-Windows limits the GUI window size to what fits on the
monitor.
Solution: Limit the size for all systems. (Daniel Harding)
2013-07-03 16:58:44 +02:00
f4e1143697
updated for version 7.3.1295
...
Problem: glob() and globpath() do not handle escaped special characters
properly.
Solution: Handle escaped characters differently. (Adnan Zafar)
2013-07-03 16:53:03 +02:00
a87aa8061c
updated for version 7.3.1294
...
Problem: ":diffoff" resets options.
Solution: Save and restore option values. (Christian Brabandt)
2013-07-03 15:47:03 +02:00
caf2dffd51
updated for version 7.3.1293
...
Problem: Put in empty buffer cannot be undone.
Solution: Save one more line for undo. (Ozaki)
2013-07-03 14:19:54 +02:00
5e6d5ca16c
updated for version 7.3.1292
...
Problem: Possibly using invalid pointer when searcing for window. (Raichoo)
Solution: Use "firstwin" instead of "tp_firstwin" for current tab.
2013-07-03 14:01:56 +02:00
e1fc4e2f0f
updated for version 7.3.1291
...
Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck)
Solution: Initialize the variables.
2013-07-03 13:29:58 +02:00
79f7e1475a
updated for version 7.3.1290
...
Problem: CTRL-R = in Insert mode changes the start of the insert position.
(Ingo Karkat)
Solution: Only break undo, don't start a new insert.
2013-07-03 13:16:23 +02:00
f9da680a0b
updated for version 7.3.1289
...
Problem: Get GLIB warning when removing a menu item.
Solution: Reference menu-id and also call gtk_container_remove(). (Ivan
Krasilnikov)
2013-07-03 13:04:27 +02:00
2951b77e50
updated for version 7.3.1288
...
Problem: The first ":echo 'hello'" command output doesn't show. Mapping
for <S-F3> gets triggered during startup.
Solution: Add debugging code for the termresponse. When receiving the "Co"
entry and when setting 'ambiwidth' redraw right away if possible.
Add redraw_asap(). Don't set 'ambiwidth' if it already had the
right value. Do the 'ambiwidth' check in the second row to avoid
confusion with <S-F3>.
2013-07-03 12:45:31 +02:00
4100937474
updated for version 7.3.1287
...
Problem: Python SystemExit exception is not handled properly.
Solution: Catch the exception and give an error. (Yasuhiro Matsumoto, Ken
Takata)
2013-07-01 22:03:04 +02:00
c33916a6e0
updated for version 7.3.1286
...
Problem: Check for screen size missing for Athena and Motif.
Solution: Add call to limit_screen_size().
2013-07-01 21:43:08 +02:00
f5901aa195
updated for version 7.3.1285
...
Problem: No tests for picking a window when selecting an entry in a
location list. Not picking the right window sometimes.
Solution: Add test 96. Set usable_win appropriately. (Lech Lorens)
2013-07-01 21:25:25 +02:00
2982e70243
updated for version 7.3.1284
...
Problem: Compiler warnings in MS-Windows clipboard handling.
Solution: Add type casts. (Ken Takata)
2013-07-01 21:08:48 +02:00
72fe56f298
updated for version 7.3.1283
...
Problem: Test 71 fails on MS-Windows.
Solution: Put the binary data in a separate file. (Ken Takata)
2013-07-01 21:00:35 +02:00
bd65c46478
updated for version 7.3.1282
...
Problem: 'cursorline' not drawn in any other window. (Charles Campbell)
Solution: Do draw the cursor line in other windows.
2013-07-01 20:18:33 +02:00
0e710d603e
updated for version 7.3.1281
...
Problem: When 'ttymouse' is set to "xterm2" clicking in column 123 moves
the cursor to column 96. (Kevin Goodsell)
Solution: Decode KE_CSI.
2013-07-01 20:06:19 +02:00
d05bf560ac
updated for version 7.3.1280
...
Problem: Reading memory already freed since patch 7.3.1247. (Simon
Ruderich, Dominique Pelle)
Solution: Copy submatches before reallocating the state list.
2013-06-30 23:24:08 +02:00
673b9a3cae
updated for version 7.3.1279
...
Problem: Compiler warning for variable uninitialized. (Tony Mechelynck)
Solution: Add an init.
2013-06-30 22:43:27 +02:00
e057d40d96
updated for version 7.3.1278
...
Problem: When someone sets the screen size to a huge value with "stty" Vim
runs out of memory before reducing the size.
Solution: Limit Rows and Columns in more places.
2013-06-30 17:51:51 +02:00
5a4d51e692
updated for version 7.3.1277
...
Problem: In diff mode 'cursorline' also draws in the non-active window.
When 'nu' and 'sbr' are set the 'sbr' string is not underlined.
Solution: Only draw the cursor line in the current window. Combine the
'cursorline' and other highlighting attributes. (Christian
Brabandt)
2013-06-30 17:24:16 +02:00
85e932f2ca
updated for version 7.3.1276
...
Problem: When using a cscope connection resizing the window may send
SIGWINCH to cscope and it quits.
Solution: Call setpgid(0, 0) in the child process. (Narendran Gopalakrishnan)
2013-06-30 15:01:22 +02:00
e78495de7e
updated for version 7.3.1275
...
Problem: "gn" does not work when the match is a single character.
Solution: Fix it, add a test. (Christian Brabandt)
2013-06-30 14:46:53 +02:00
2486285546
updated for version 7.3.1274
...
Problem: When selecting an entry from a location list it may pick an
arbitrary window or open a new one.
Solution: Prefer using a window related to the location list. (Lech Lorens)
2013-06-30 13:57:45 +02:00
730d2c0747
updated for version 7.3.1273
...
Problem: When copying a location list the index might be wrong.
Solution: Set the index to one when using the first entry. (Lech Lorens)
2013-06-30 13:33:58 +02:00
55480dccf4
updated for version 7.3.1272
...
Problem: Crash when editing Ruby file. (Aliaksandr Rahalevich)
Solution: Reallocate the state list when necessary.
2013-06-30 13:17:24 +02:00
a4c8dcbdae
updated for version 7.3.1271
...
Problem: Command line completion does not work.
Solution: Move setting xp_line down. (Daniel Thau)
2013-06-30 12:21:24 +02:00
14b6945e27
Updated runtime files.
2013-06-29 23:05:20 +02:00
10315b1201
updated for version 7.3.1270
...
Problem: Using "Vp" in an empty buffer can't be undone. (Hauke Petersen)
Solution: Save one line in an empty buffer. (Christian Brabandt)
2013-06-29 17:19:28 +02:00
6b487147ac
updated for version 7.3.1269
...
Problem: Insert completion keeps entry selected even though the list has
changed. (Olivier Teuliere)
Solution: Reset compl_shown_match and compl_curr_match. (Christian Brabandt)
2013-06-29 16:21:58 +02:00
39efa89afb
updated for version 7.3.1268
...
Problem: ACL support doesn't work when when compiled with MingW.
Solution: Support ACL on MingW. (Ken Takata)
2013-06-29 15:40:04 +02:00
2751592119
updated for version 7.3.1267
...
Problem: MS-Windows ACL support doesn't work well.
Solution: Implement more ACL support. (Ken Takata)
2013-06-29 15:36:26 +02:00
a8e3580be6
updated for version 7.3.1266
...
Problem: QNX: GUI fails to start.
Solution: Remove the QNX-specific #ifdef. (Sean Boudreau)
2013-06-29 15:19:21 +02:00
630a730f9b
updated for version 7.3.1265
...
Problem: Accepting "Vim:" for a modeline causes errors too often.
Solution: Require "Vim:" to be followed by "set".
2013-06-29 15:07:22 +02:00
f3fe392760
updated for version 7.3.1264
...
Problem: Missing m_nowait.
Solution: Include missing part of the patch.
2013-06-29 14:47:22 +02:00
4a46070365
updated for version 7.3.1263
...
Problem: Typo in short option name.
Solution: Change "imse" to "imsf".
2013-06-29 14:42:26 +02:00
fe17e7640d
updated for version 7.3.1262
...
Problem: Crash and compilation warnings with Cygwin.
Solution: Check return value of XmbTextListToTextProperty(). Add type casts.
Adjust #ifdefs. (Lech Lorens)
2013-06-29 14:17:02 +02:00
72179e1bd0
updated for version 7.3.1261
...
Problem: A buffer-local language mapping from a keymap stops a global
insert mode mapping from working. (Ron Aaron)
Solution: Do not wait for more characters to be typed only when the mapping
was defined with <nowait>.
2013-06-29 13:58:31 +02:00
b751546636
updated for version 7.3.1260
...
Problem: User completion does not get the whole command line in the command
line window.
Solution: Pass on the whole command line. (Daniel Thau)
2013-06-29 12:58:33 +02:00
560c52d32b
updated for version 7.3.1259
...
Problem: No test for patch 7.3.1258
Solution: Add a test entry.
2013-06-29 12:10:26 +02:00
4d9ae21a34
updated for version 7.3.1258
...
Problem: Using submatch() may crash Vim. (Ingo Karkat)
Solution: Restore the number of subexpressions used.
2013-06-28 23:04:42 +02:00
e3a0b53c2e
updated for version 7.3.1257
...
Problem: With GNU gettext() ":lang de_DE.utf8" does not always result in
German messages.
Solution: Clear the $LANGUAGE environment variable.
2013-06-28 20:36:30 +02:00
f0327f67c7
updated for version 7.3.1256
...
Problem: Can't build without eval or autocmd feature.
Solution: Add #ifdefs.
2013-06-28 20:16:55 +02:00
22dbc77ef1
Update runtime files. Remove duplicate tags in help.
2013-06-28 18:44:48 +02:00
6470de83f2
updated for version 7.3.1255
...
Problem: Clang warnings when building with Athena.
Solution: Add type casts. (Dominique Pelle)
2013-06-27 22:36:03 +02:00
a5f5c8be8f
updated for version 7.3.1254
...
Problem: Can't build without the multi-lang feature. (John Marriott)
Solution: Add #ifdef.
2013-06-27 22:29:38 +02:00
5737ca2350
updated for version 7.3.1253
...
Problem: Still undo problem after using CTRL-R = setline(). (Hirohito
Higashi)
Solution: Set the ins_need_undo flag.
2013-06-27 22:21:24 +02:00
c9dcb42704
updated for version 7.3.1252
...
Problem: Gvim does not find the toolbar bitmap files in ~/vimfiles/bitmaps
if the corresponding menu command contains additional characters
like the shortcut marker '&' or if you use a non-english locale.
Solution: Use menu->en_dname or menu->dname. (Martin Gieseking)
2013-06-27 22:02:02 +02:00
9b846cb8ac
updated for version 7.3.1251
...
Problem: Test 61 messes up viminfo.
Solution: Specify a separate viminfo file.
2013-06-26 21:56:36 +02:00
877aa00811
updated for version 7.3.1250
...
Problem: Python tests fail on MS-Windows.
Solution: Change backslashes to slashes. (Taro Muraoka)
2013-06-26 21:49:51 +02:00
c14621eafb
updated for version 7.3.1249
...
Problem: Modeline not recognized when using "Vim" instead of "vim".
Solution: Also accept "Vim".
2013-06-26 20:04:35 +02:00
abab85a499
updated for version 7.3.1248
...
Problem: Still have old hacking code for Input Method.
Solution: Add 'imactivatefunc' and 'imstatusfunc' as a generic solution to
Input Method activation. (Yukihiro Nakadaira)
2013-06-26 19:18:05 +02:00
a0169128d9
updated for version 7.3.1247
...
Problem: New regexp engine: '[ ]\@!\p\%([ ]\@!\p\)*:' does not always match.
Solution: When there is a PIM add a duplicate state that starts at another
position.
2013-06-26 18:16:58 +02:00
b893ac2098
updated for version 7.3.1246
...
Problem: When setting 'winfixheight' and resizing the window causes the
window layout to be wrong.
Solution: Add frame_check_height() and frame_check_width() (Yukihiro
Nakadaira)
2013-06-26 14:04:47 +02:00
31c31679e2
Updated runtime files. New version of TOhtml plugin.
2013-06-26 13:28:14 +02:00
b052fe0e2c
updated for version 7.3.1245
...
Problem: MS-Windows: confirm() dialog text may still not fit.
Solution: Use GetTextWidthEnc() instead of GetTextWidth() in two more
places. (Yasuhiro Matsumoto)
2013-06-26 13:16:20 +02:00
f05d81102c
updated for version 7.3.1244
...
Problem: MS-Windows: confirm() dialog text may not fit.
Solution: Use GetTextWidthEnc() instead of GetTextWidth(). (Yasuhiro
Matsumoto)
2013-06-26 12:58:32 +02:00
f86c0b01a7
updated for version 7.3.1243
...
Problem: New regexp engine: back references in look-behind match don't
work. (Lech Lorens)
Solution: Copy the submatches before a recursive match.
2013-06-26 12:42:44 +02:00
daa270289b
updated for version 7.3.1242
...
Problem: No failure when trying to use a number as a string.
Solution: Give an error when StringToLine() is called with an instance of
the wrong type. (Jun Takimoto)
2013-06-24 22:33:30 +02:00
c8c13a0307
updated for version 7.3.1241
...
Problem: Some test files missing from the distribution.
Solution: Update the list of files.
2013-06-24 22:23:55 +02:00
56b45b9b37
Update runtime files.
2013-06-24 22:22:18 +02:00
df2bc27b52
updated for version 7.3.1240
...
Problem: Memory leak in findfile().
Solution: Free the memory. (Christian Brabandt)
2013-06-24 22:17:32 +02:00
c1c3d68da9
updated for version 7.3.1239
...
Problem: Can't build with Python and MSVC10.
Solution: Move #if outside of macro. (Taro Muraoka)
2013-06-24 21:21:58 +02:00
d5e376eb3b
updated for version 7.3.1238
...
Problem: Crash in Python interface on 64 bit machines.
Solution: Change argument type of PyString_AsStringAndSize. (Taro Muraoka,
Jun Takimoto)
2013-06-24 20:32:57 +02:00
7e85d3d432
updated for version 7.3.1237
...
Problem: Python: non-import errors not handled correctly.
Solution: Let non-ImportError exceptions pass the finder. (ZyX)
2013-06-23 16:40:39 +02:00
dee2e315d7
updated for version 7.3.1236
...
Problem: Python: WindowSetattr() missing support for NUMBER_UNSIGNED.
Solution: Add NUMBER_UNSIGNED, add more tests. Various fixes. (ZyX)
2013-06-23 16:35:47 +02:00
ede3e6383d
updated for version 7.3.1235
...
Problem: In insert mode CTRL-] is not inserted, on the command-line it is.
Solution: Don't insert CTRL-] on the command line. (Yukihiro Nakadaira)
2013-06-23 16:16:19 +02:00
6f1404f8a8
updated for version 7.3.1234
...
Problem: Python: Strings are not marked for translation.
Solution: Add N_() where appropriate. (ZyX)
2013-06-23 16:04:08 +02:00
841fbd2907
updated for version 7.3.1233
...
Problem: Various Python problems.
Solution: Fix VimTryEnd. Crash with debug build and PYTHONDUMPREFS=1. Memory
leaks in StringToLine(), BufferMark() and convert_dl. (ZyX)
2013-06-23 14:37:07 +02:00
c4b99e0be7
updated for version 7.3.1232
...
Problem: Python: inconsistencies in variable names.
Solution: Rename variables. (ZyX)
2013-06-23 14:30:47 +02:00
141be8a585
updated for version 7.3.1231
...
Problem: Python: use of numbers not consistent.
Solution: Add support for Number protocol. (ZyX)
2013-06-23 14:16:57 +02:00
c476e52fca
updated for version 7.3.1230
...
Problem: Python: Exception messages are not clear.
Solution: Make exception messages more verbose. (ZyX)
2013-06-23 13:46:40 +02:00
0bd80ccd85
updated for version 7.3.1229
...
Problem: Python: not so easy to delete/restore translating.
Solution: Make macros do translation of exception messages. (ZyX)
Note: this breaks translations!
2013-06-23 13:28:17 +02:00
808c2bc8bf
updated for version 7.3.1228
...
Problem: Python: various inconsistencies and problems.
Solution: StringToLine now supports both bytes() and unicode() objects.
Make function names consistant. Fix memory leak fixed in
StringToLine. (ZyX)
2013-06-23 13:11:18 +02:00
389a1793f4
updated for version 7.3.1227
...
Problem: Inconsistent string conversion.
Solution: Use 'encoding' instead of utf-8. Use METH_O in place of
METH_VARARGS where appropriate. (ZyX)
2013-06-23 13:00:44 +02:00
6c85e7f3be
updated for version 7.3.1226
...
Problem: Python: duplicate code.
Solution: Share code between OutputWrite() and OutputWritelines(). (ZyX)
2013-06-23 12:51:32 +02:00
3dbcd0c7ad
updated for version 7.3.1225
...
Problem: Compiler warnings when building with Motif.
Solution: Change set_label() argument. (Kazunobu Kuriyama)
2013-06-22 13:00:16 +02:00
fe70acb376
updated for version 7.3.1224
...
Problem: Clang gives warnings on xxd.
Solution: Change how to use part of a string. (Dominique Pelle) Also avoid
warning for return not reached.
2013-06-21 18:31:23 +02:00
d73895ec00
updated for version 7.3.1223
...
Problem: Tests fail on MS-Windows.
Solution: Avoid depending on OS version. Use DOS commands instead of Unix
commands. (Taro Muraoka, Ken Takata)
2013-06-19 21:17:31 +02:00
22f93c700f
updated for version 7.3.1222
...
Problem: Cannot execute some tests from the src directoly.
Solution: Add missing targets.
2013-06-19 20:11:50 +02:00
a6cc03101e
updated for version 7.3.1221
...
Problem: When build flags change "make distclean" run into a configure
error.
Solution: When CFLAGS changes delete auto/config.cache. Also avoid adding
duplicate text to flags.
2013-06-18 23:31:55 +02:00
db250526bb
updated for version 7.3.1220
...
Problem: MS-Windows: When using wide font italic and bold are not included.
Solution: Support wide-bold, wide-italic and wide-bold-italic. (Ken Takata,
Taro Muraoka)
2013-06-17 22:43:25 +02:00
a0c85c7ae1
updated for version 7.3.1219
...
Problem: No test for using []] inside \%[].
Solution: Add a test.
2013-06-17 22:04:38 +02:00
555d2a8340
updated for version 7.3.1218
...
Problem: "make test" on MS-Windows does not clean all temporary files and
gives some unneccessary message.
Solution: Clean the right files. Create .failed files. (Ken Takata)
2013-06-17 21:53:37 +02:00
d79862599d
updated for version 7.3.1217
...
Problem: New regexp engine: Can't handle \%[[ao]]. (Yukihiro Nakadaira)
Solution: Support nested atoms inside \%[].
2013-06-17 21:33:41 +02:00
6324c3b920
updated for version 7.3.1216
...
Problem: Configure can't find Motif on Ubuntu.
Solution: Search for libXm in /usr/lib/*-linux-gnu.
2013-06-17 20:27:18 +02:00
06ae70d07c
updated for version 7.3.1215
...
Problem: Compiler warning for function not defined.
Solution: Add #ifdef.
2013-06-17 19:26:36 +02:00
01b626c26e
updated for version 7.3.1214
...
Problem: Missing declaration for init_users() and realloc_post_list().
(Salman Halim)
Solution: Add the declarations.
2013-06-16 22:49:14 +02:00
8c0e322f18
updated for version 7.3.1213
...
Problem: Can't build with small features and Python.
Solution: Adjust #ifdefs.
2013-06-16 17:32:40 +02:00
6949eea7cc
updated for version 7.3.1212
...
Problem: "make test" on MS-Windows does not report failure like Unix does.
Solution: Make it work like on Unix. (Taro Muraoka)
2013-06-16 16:57:46 +02:00
5246cd7a9b
updated for version 7.3.1211
...
Problem: MS-Windows: When 'encoding' differs from the current codepage
":hardcopy" does not work properly.
Solution: Use TextOutW() and SetDlgItemTextW(). (Ken Takata)
2013-06-16 16:41:47 +02:00
03e114b0f2
updated for version 7.3.1210
...
Problem: 'backupcopy' default on MS-Windows is wrong when 'encoding' equals
the current codepage.
Solution: Change the #else block. (Ken Takata)
2013-06-16 16:34:56 +02:00
70baa405f2
updated for version 7.3.1209
...
Problem: No completion for ":tabdo".
Solution: Add tabdo to the list of modifiers. (Dominique Pelle)
2013-06-16 16:14:03 +02:00
427d51c23f
updated for version 7.3.1208
...
Problem: Compiler warnings on MS-Windows.
Solution: Add type cast. Move variable declaration. (Mike Williams)
2013-06-16 16:01:25 +02:00
a50d02d983
updated for version 7.3.1207
...
Problem: New regexp engine: no match found on "#if FOO". (Lech Lorens)
Solution: When adding a state gets skipped don't adjust the index.
2013-06-16 15:43:50 +02:00
5ab9d98b9a
updated for version 7.3.1206
...
Problem: Inconsistent function argument declarations.
Solution: Use ANSI style.
2013-06-16 14:25:57 +02:00
926b5d3b30
updated for version 7.3.1205
...
Problem: logtalk.dict is not removed on uninstall.
Solution: Remove the file. (Kazunobu Kuriyama)
2013-06-16 14:20:13 +02:00
d69497413f
updated for version 7.3.1204
...
Problem: Calling gettabwinvar() in 'tabline' cancels Visual mode. (Hirohito
Higashi)
Solution: Don't always use goto_tabpage_tp().
2013-06-16 14:18:28 +02:00
4ce239b0b1
updated for version 7.3.1203
...
Problem: Matches from matchadd() might be highlighted incorrectly when they
are at a fixed position and inserting lines. (John Szakmeister)
Solution: Redraw all lines below a change if there are highlighted matches.
(idea by Christian Brabandt)
2013-06-15 23:00:30 +02:00
3351679948
updated for version 7.3.1202
...
Problem: Tags are not found in case-folded tags file. (Darren cole, Issue
90)
Solution: Take into account that when case folding was used for the tags
file "!rm" sorts before the "!_TAG" header lines.
2013-06-15 22:26:52 +02:00
e66f06d819
updated for version 7.3.1201
...
Problem: When a startup script creates a preview window, it probably
becomes the current window.
Solution: Make another window the current one. (Christian Brabandt)
2013-06-15 21:54:16 +02:00
52b91d801a
Updated runtime files.
2013-06-15 21:39:51 +02:00
df9259abce
updated for version 7.3.1200
...
Problem: When calling setline() from Insert mode, using CTRL-R =, undo does
not work properly. (Israel Chauca)
Solution: Sync undo after evaluating the expression. (Christian Brabandt)
2013-06-15 17:54:43 +02:00
dab38d516e
updated for version 7.3.1199
...
Problem: When evaluating 'foldexpr' causes an error this is silently
ignored and evaluation is retried every time.
Solution: Set emsg_silent instead of emsg_off. Stop evaluating 'foldexpr' is
it is causing errors. (Christian Brabandt)
2013-06-15 17:06:36 +02:00
9be6e21575
updated for version 7.3.1198
...
Problem: Build error when using Perl 5.18.0 and dynamic loading.
Solution: Change #ifdefs for Perl_croak_xs_usage. (Ike Devolder)
2013-06-15 16:47:35 +02:00
ff1806f8da
updated for version 7.3.1197
...
Problem: ":wviminfo!" does not write history previously read from a viminfo
file. (Roland Eggner)
Solution: When not merging history write all entries.
2013-06-15 16:31:47 +02:00
141f6bb341
updated for version 7.3.1196
...
Problem: Old regexp engine does not match pattern with backref correctly.
(Dominique Pelle)
Solution: Fix setting status. Test multi-line patterns better.
2013-06-15 15:09:50 +02:00
4cff8faf05
updated for version 7.3.1195
...
Problem: Compiler warning for unitialized variable. (Tony Mechelynck)
Solution: Set the length to the matching backref.
2013-06-14 22:48:54 +02:00
44c71db771
updated for version 7.3.1194
...
Problem: Yaml highlighting is slow.
Solution: Tune the estimation of pattern failure chance.
2013-06-14 22:33:51 +02:00
1612b1abe7
updated for version 7.3.1193
...
Problem: fail_if_missing not used for Python 3.
Solution: Give an error when Python 3 can't be configured. (Andrei Olsen)
2013-06-14 21:22:39 +02:00
c5089bb8ff
updated for version 7.3.1192
...
Problem: Valgrind reports errors when using backreferences. (Dominique
Pelle)
Solution: Do not check the end of submatches.
2013-06-14 21:15:25 +02:00
580abea48a
updated for version 7.3.1191
...
Problem: Backreference to previous line doesn't work. (Lech Lorens)
Solution: Implement looking in another line.
2013-06-14 20:31:28 +02:00
6e70736cbc
updated for version 7.3.1190
...
Problem: Compiler warning for parentheses. (Christian Wellenbrock)
Solution: Change #ifdef.
2013-06-14 19:15:58 +02:00
4c46b5e001
updated for version 7.3.1189
...
Problem: Highlighting is still wrong sometimes. (Dominique Pelle)
Solution: Also restore reginput properly.
2013-06-13 22:59:30 +02:00
9d438d3b38
updated for version 7.3.1188
...
Problem: Newline characters messing up error message.
Solution: Remove the newlines. (Kazunobu Kuriyama)
2013-06-13 21:57:20 +02:00
0c6633a7ea
updated for version 7.3.1187
...
Problem: "s:" is recognized but "<SID>" is not. (ZyX)
Solution: Translate "<SID>" like "s:".
2013-06-13 21:24:06 +02:00
5f87b23229
updated for version 7.3.1186
...
Problem: Python 3: test 87 may crash.
Solution: Use _PyArg_Parse_SizeT instead of PyArg_Parse. (Jun Takimoto)
2013-06-13 20:57:50 +02:00
b62bcd1e05
updated for version 7.3.1185
...
Problem: New regexp engine: no match with ^ after \n. (SungHyun Nam)
Solution: Fix it, add a test.
2013-06-13 20:19:40 +02:00
484d241a4a
updated for version 7.3.1184
...
Problem: Highlighting is sometimes wrong. (Axel Bender)
Solution: Fetch regline again when returning from recursive regmatch.
2013-06-13 19:47:07 +02:00
98bfc2d5ee
Add missing files from 7.3.1183.
2013-06-13 19:44:55 +02:00
82850dd9cb
updated for version 7.3.1183
...
Problem: Python tests 86 and 87 fail.
Solution: Add "empty" files. (ZyX)
2013-06-13 19:27:18 +02:00
12b559e7c3
updated for version 7.3.1182
...
Problem: 'backupcopy' default on MS-Windows does not work for hard and soft
links.
Solution: Check for links. (David Pope, Ken Takata)
2013-06-12 22:41:37 +02:00
2a876e40ce
updated for version 7.3.1181
...
Problem: Wrong error message for 1.0[0].
Solution: Check for funcref and float separately. (Yasuhiro Matsumoto)
2013-06-12 22:08:58 +02:00
ec7944aaf2
Update runtime files.
2013-06-12 21:29:15 +02:00
cab465a6d7
updated for version 7.3.1180
...
Problem: When current directory changes, path from cscope may no longer be
valid. (AS Budden)
Solution: Always store the absolute path. (Christian Brabandt)
2013-06-12 21:25:23 +02:00
0825c00f14
updated for version 7.3.1179
...
Problem: When a global mapping starts with the same characters as a
buffer-local mapping Vim waits for a character to be typed to find
out whether the global mapping is to be used. (Andy Wokula)
Solution: Use the local mapping without waiting. (Michael Henry)
2013-06-12 21:00:26 +02:00
22971aaa45
updated for version 7.3.1178
...
Problem: Can't put all Vim config files together in one directory.
Solution: Load ~/.vim/vimrc if ~/.vimrc does not exist. (Lech Lorens)
2013-06-12 20:35:58 +02:00
6395af8018
updated for version 7.3.1177
...
Problem: Wasting memory on padding.
Solution: Reorder struct fields. (Dominique Pelle)
2013-06-12 19:52:15 +02:00
edb07a2d88
updated for version 7.3.1176
...
Problem: Compiler warnings on 64 bit system.
Solution: Add type casts. (Mike Williams)
2013-06-12 18:13:38 +02:00
2d473ab932
updated for version 7.3.1175
...
Problem: Using isalpha() and isalnum() can be slow.
Solution: Use range checks. (Mike Williams)
2013-06-12 17:12:24 +02:00
81c40c507c
updated for version 7.3.1174
...
Problem: Python 2 and 3 use different ways to load modules.
Solution: Use the same method. (ZyX)
2013-06-12 14:41:04 +02:00
27610ed76c
updated for version 7.3.1173
...
Problem: Python 2 tests don't have the same output everywhere.
Solution: Make the Python 2 tests more portable. (ZyX)
2013-06-12 14:26:26 +02:00
9f3685a527
updated for version 7.3.1172
...
Problem: Python 2: loading modules doesn't work well.
Solution: Fix the code. Add more tests. (ZyX)
2013-06-12 14:20:36 +02:00
0ea4a6b94b
updated for version 7.3.1171
...
Problem: Check for digits and ascii letters can be faster.
Solution: Use a trick with one comparison. (Dominique Pelle)
2013-06-12 14:10:26 +02:00
60bf1f58d0
updated for version 7.3.1170
...
Problem: Patch 7.3.1058 breaks backwards compatibility, not possible to use
a function reference as a string. (lilydjwg)
Solution: Instead of translating the function name only translate "s:".
2013-06-12 13:37:43 +02:00
a2947e2bea
updated for version 7.3.1169
...
Problem: New regexp engine: some work is done while executing a pattern,
even though the result is predictable.
Solution: Do the work while compiling the pattern.
2013-06-11 22:44:09 +02:00
780c3e9b04
updated for version 7.3.1168
...
Problem: Python "sane" configure checks give a warning message.
Solution: Use single quotes intead of escaped double quotes. (Ben Fritz)
2013-06-11 20:53:28 +02:00
3c7ad013fb
updated for version 7.3.1167
...
Problem: Python configure check doesn't reject Python 2 when requesting
Python 3. Some systems need -pthreads instead of -pthread.
Solution: Adjust configure accordingly. (Andrei Olsen)
2013-06-11 19:53:45 +02:00
a9f2220176
updated for version 7.3.1166
...
Problem: Loading Python modules is not tested.
Solution: Enable commented-out tests, add missing files. (ZyX)
2013-06-11 18:48:21 +02:00
16619a235b
updated for version 7.3.1165
...
Problem: HP-UX compiler can't handle zero size array. (Charles Cooper)
Solution: Make the array one item big.
2013-06-11 18:42:36 +02:00
9a773488a7
updated for version 7.3.1164
...
Problem: Can't test what is actually displayed on screen.
Solution: Add the screenchar() and screenattr() functions.
2013-06-11 18:40:13 +02:00
c09a6d6c0c
updated for version 7.3.1163
...
Problem: Not easy to load Python modules.
Solution: Search "python2", "python3" and "pythonx" directories in
'runtimepath' for Python modules. (ZyX)
2013-06-10 21:27:29 +02:00
f9c9b32bd1
updated for version 7.3.1162
...
Problem: Python: Memory leaks
Solution: Add more Py_DECREF(). (ZyX)
2013-06-10 20:47:36 +02:00
c1ba10c7f6
updated for version 7.3.1161
...
Problem: Python: PyList_SetItem() is inefficient.
Solution: Use PyList_SET_ITEM() (ZyX)
2013-06-10 20:39:03 +02:00
570064cf21
updated for version 7.3.1160
...
Problem: Mixing long and pointer doesn't always work.
Solution: Avoid cast to pointer.
2013-06-10 20:25:10 +02:00
a2e14fc764
updated for version 7.3.1159
...
Problem: The round() function is not always available. (Christ van
Willegen)
Solution: Use the solution from f_round().
2013-06-10 20:10:44 +02:00
0bdda37fb4
updated for version 7.3.1158
...
Problem: Crash when running test 86. (Jun Takimoto)
Solution: Define PY_SSIZE_T_CLEAN early. (Elimar Riesebieter)
2013-06-10 18:36:24 +02:00
bcf4d178ab
updated for version 7.3.1157
...
Problem: New regexp engine fails on "\(\<command\)\@<=.*"
Solution: Fix rule for postponing match. Further tune estimating whether
postponing works better. Add test.
2013-06-10 16:35:18 +02:00
4380d1ea23
updated for version 7.3.1156
...
Problem: Compiler warnings. (dv1445)
Solution: Initialize variables, even when the value isn't really used.
2013-06-09 20:51:00 +02:00
11354759e2
updated for version 7.3.1155
...
Problem: MS-DOS: "make test" uses external rmdir command.
Solution: Rename "rmdir" to "rd". (Taro Muraoka)
2013-06-09 17:52:46 +02:00
927d4a1fb5
updated for version 7.3.1154
...
Problem: New regexp_nfa engine: Uneccessary code.
Solution: Remove uneccessary code.
2013-06-09 17:25:34 +02:00
2a4e98ac1e
updated for version 7.3.1153
...
Problem: New regexp engine: Some look-behind matches are very expensive.
Solution: Pospone invisible matches further, until a match is almost found.
2013-06-09 16:24:45 +02:00
a940aa6fc4
updated for version 7.3.1152
...
Problem: In tiny build ireg_icombine is undefined. (Tony Mechelynck)
Solution: Add #ifdef.
2013-06-08 23:30:04 +02:00
1e02e6620b
updated for version 7.3.1151
...
Problem: New regexp engine: Slow when a look-behind match is followed by a
zero-width match.
Solution: Postpone the look-behind match more often.
2013-06-08 23:26:27 +02:00
e7766eeaa5
updated for version 7.3.1150
...
Problem: New regexpengine: Slow when a look-behind match does not have a
width specified.
Solution: Try to compute the maximum width.
2013-06-08 22:30:03 +02:00
473de61b04
updated for version 7.3.1149
...
Problem: New regexp engine: Matching plain text could be faster.
Solution: Detect a plain text match and handle it specifically. Add
vim_regfree().
2013-06-08 18:19:48 +02:00
cd9c46265e
updated for version 7.3.1148
...
Problem: No command line completion for ":syntime".
Solution: Implement the completion. (Dominique Pelle)
2013-06-08 15:24:48 +02:00
87f764a891
updated for version 7.3.1147
...
Problem: New regexp engine: regstart is only used to find the first match.
Solution: Use regstart whenever adding the start state.
2013-06-08 14:38:27 +02:00
b1b284fd5d
updated for version 7.3.1146
...
Problem: New regexp engine: look-behind match not checked when followed by
zero-width match.
Solution: Do the look-behind match before adding the zero-width state.
2013-06-08 13:33:37 +02:00
f96d109827
updated for version 7.3.1145
...
Problem: New regexp engine: addstate() is called very often.
Solution: Optimize adding the start state.
2013-06-07 22:39:40 +02:00
2358403363
updated for version 7.3.1144
...
Problem: "RO" is not translated everywhere.
Solution: Put inside _(). (Sergey Alyoshin)
2013-06-07 20:17:11 +02:00
3798519b9e
updated for version 7.3.1143
...
Problem: When mapping NUL it is displayed as an X.
Solution: Check for KS_ZERO instead of K_ZERO. (Yasuhiro Matsumoto)
2013-06-07 19:53:10 +02:00
45fc539fe0
updated for version 7.3.1142
...
Problem: Memory leak in ":syntime report".
Solution: Clear the grow array. (Dominique Pelle)
2013-06-07 19:48:39 +02:00
a238431302
updated for version 7.3.1141
...
Problem: Win32: Check for available memory is not reliable and adds
overhead.
Solution: Remove mch_avail_mem(). (Mike Williams)
2013-06-07 19:17:14 +02:00
43e0298416
updated for version 7.3.1140
...
Problem: New regexp engine: trying expensive match while the result is not
going to be used.
Solution: Check for output state already being in the state list.
2013-06-07 17:31:29 +02:00
decd9540fd
updated for version 7.3.1139
...
Problem: New regexp engine: negated flag is hardly used.
Solution: Add separate _NEG states, remove negated flag.
2013-06-07 16:31:50 +02:00
8aca2e9bef
updated for version 7.3.1138
...
Problem: New regexp engine: neglist no longer used.
Solution: Remove the now unused neglist.
2013-06-07 14:59:18 +02:00
417bad227a
updated for version 7.3.1137
...
Problem: New regexp engine: collections are slow.
Solution: Handle all characters in one go.
2013-06-07 14:08:30 +02:00
203d04d764
Updated runtime files.
2013-06-06 21:36:40 +02:00
4cd92d5aae
updated for version 7.3.1136
...
Problem: ":func Foo" does not show attributes.
Solution: Add "abort", "dict" and "range". (Yasuhiro Matsumoto)
2013-06-06 21:31:06 +02:00
4e31296ffa
updated for version 7.3.1135
...
Problem: Compiler warning for unused argument.
Solution: Add UNUSED.
2013-06-06 21:19:51 +02:00
cc908adac8
updated for version 7.3.1134
...
Problem: Running test 49 takes a long time.
Solution: Don't have it grep all files.
2013-06-06 18:55:49 +02:00
d89616ebb8
updated for version 7.3.1133
...
Problem: New regexp engine is a bit slow.
Solution: Skip ahead to a character that must match. Don't try matching a
"^" patter past the start of line.
2013-06-06 18:46:06 +02:00
6d3a5d755a
updated for version 7.3.1132
...
Problem: Crash when debugging regexp.
Solution: Do not try to dump subexpr that were not set. Skip over count of
\% items.
2013-06-06 18:04:51 +02:00
188c57bcd1
updated for version 7.3.1131
...
Problem: New regexp engine is a bit slow.
Solution: Do not clear the state list. Don't copy syntax submatches when
not used.
2013-06-06 16:22:06 +02:00
f751255283
updated for version 7.3.1130
...
Problem: Can't build with anything but huge features.
Solution: Check for FEAT_PROFILE. (Yasuhiro Matsumoto)
2013-06-06 14:55:19 +02:00
8a7f5a2d43
updated for version 7.3.1129
...
Problem: Can't see what pattern in syntax highlighting is slow.
Solution: Add the ":syntime" command.
2013-06-06 14:01:46 +02:00
cd2d8bb6ea
updated for version 7.3.1128
...
Problem: Now that the NFA engine handles everything every failure is a
syntax error.
Solution: Remove the syntax_error flag.
2013-06-05 21:42:53 +02:00
2976c028ca
updated for version 7.3.1127
...
Problem: No error for using empty \%[].
Solution: Give error message.
2013-06-05 21:30:37 +02:00
c19b4b50a8
updated for version 7.3.1126
...
Problem: Compiler warning for unitialized variable. (Tony Mechelynck)
Solution: Assign something to the variable.
2013-06-05 21:23:39 +02:00
973fced763
updated for version 7.3.1125
...
Problem: Error for using \%V in a pattern in tiny Vim.
Solution: Allow using \%V but never match. (Dominique Pelle)
2013-06-05 21:10:59 +02:00
d4209d203a
updated for version 7.3.1124
...
Problem: Python: Crash on MS-Windows when os.fchdir() is not available.
Solution: Check for _chdir to be NULL. (Ken Takata)
2013-06-05 20:34:15 +02:00
e60c2e5e1c
updated for version 7.3.1123
...
Problem: Can't build tiny Vim on MS-Windows.
Solution: Adjust #ifdef around using modif_fname(). (Mike Williams)
2013-06-05 19:35:38 +02:00
8795374bd3
updated for version 7.3.1122
...
Problem: New regexp engine: \%> not supported.
Solution: Implement \%>.
2013-06-05 18:52:40 +02:00
67604aed75
updated for version 7.3.1121
...
Problem: New regexp engine: adding states that are not used.
Solution: Don't add the states.
2013-06-05 16:51:57 +02:00
5b84ddccea
updated for version 7.3.1120
...
Problem: Crash when regexp logging is enabled.
Solution: Avoid using NULL pointers. Advance over count argument.
2013-06-05 16:33:10 +02:00
1cd3f2c450
updated for version 7.3.1119
...
Problem: Flags in 'cpo' are search for several times.
Solution: Store the result and re-use the flags.
2013-06-05 12:43:09 +02:00
e2b8cb3b15
updated for version 7.3.1118
...
Problem: Match failure rate is not very specific.
Solution: Tune the failure rate for match items.
2013-06-05 11:46:25 +02:00
d75799ab7f
updated for version 7.3.1117
...
Problem: New regexp engine: \%[abc] not supported.
Solution: Implement \%[abc]. Add tests.
2013-06-05 11:05:17 +02:00
78eae9aaf7
updated for version 7.3.1116
...
Problem: Can't build without Visual mode.
Solution: Add #ifdefs.
2013-06-05 11:02:05 +02:00
5ebc09b450
updated for version 7.3.1115
...
Problem: Many users don't like the cursor line number when 'relativenumber'
is set.
Solution: Have four combinations with 'number' and 'relativenumber'.
(Christian Brabandt)
2013-06-04 22:13:50 +02:00
b76591ef4a
updated for version 7.3.1114
...
Problem: Can't build without the syntax feature.
Solution: Add #ifdefs. (Erik Falor)
2013-06-04 21:42:22 +02:00
044aa290c5
updated for version 7.3.1113
...
Problem: New regexp engine: \%'m not supported.
Solution: Implement \%'m. Add tests.
2013-06-04 21:27:38 +02:00
dacd7de3fd
updated for version 7.3.1112
...
Problem: New regexp engine: \%V not supported.
Solution: Implement \%V. Add tests.
2013-06-04 18:28:48 +02:00
f811509c03
updated for version 7.3.1111
...
Problem: nfa_recognize_char_class() implementation is inefficient.
Solution: Use bits in an int instead of chars in a string. (Dominique Pelle)
2013-06-04 17:47:05 +02:00
a2d9510861
updated for version 7.3.1110
...
Problem: New regexp matching: Using \@= and the like can be slow.
Solution: Decide whether to first try matching the zero-wdith part or what
follows, whatever is more likely to fail.
2013-06-04 14:23:05 +02:00
dd9a4a44a9
updated for version 7.3.1109
...
Problem: Building on MS-Windows doesn't see changes in if_py_both.h.
Solution: Add a dependency. (Ken Takata)
2013-06-03 20:12:51 +02:00
e9056b121d
updated for version 7.3.1108
...
Problem: Error message for os.fchdir() (Charles Peacech)
Solution: Clear the error. (ZyX)
2013-06-03 20:04:48 +02:00
01d89dddfa
updated for version 7.3.1107
...
Problem: Compiler warnings for unused variables.
Solution: Put the variables inside #ifdef.
2013-06-03 19:41:06 +02:00
dd2ccdf6ea
updated for version 7.3.1106
...
Problem: New regexp engine: saving and restoring lastlist in the states
takes a lot of time.
Solution: Use a second lastlist value for the first recursive call.
2013-06-03 12:17:04 +02:00
f46da70603
updated for version 7.3.1105
...
Problem: New regexp engine: too much code in one function. Dead code.
Solution: Move the recursive nfa_regmatch call to a separate function.
Remove the dead code.
2013-06-02 22:37:42 +02:00
f18fb7af75
updated for version 7.3.1104
...
Problem: New regexp engine does not handle "~".
Solution: Add support for "~".
2013-06-02 22:08:03 +02:00
f6de032afe
updated for version 7.3.1103
...
Problem: New regexp engine: overhead in saving and restoring.
Solution: Make saving and restoring list IDs faster. Don't copy or check \z
subexpressions when they are not used.
2013-06-02 21:30:04 +02:00
9f5d600723
updated for version 7.3.1102
...
Problem: Completion of ":py3do" and ":py3file" does not work after ":py3".
Solution: Make completion work. (Taro Muraoka)
2013-06-02 19:22:13 +02:00
ac499e3116
updated for version 7.3.1101
...
Problem: Configure doesn't find Python 3 on Ubuntu 13.04.
Solution: First try distutils.sysconfig. Also fix some indents. (Ken
Takata)
2013-06-02 19:14:17 +02:00
78b5957439
updated for version 7.3.1100
...
Problem: Python: a few more memory problems.
Solution: Add and remove Py_XDECREF(). (ZyX)
2013-06-02 18:54:21 +02:00
f4258308e2
updated for version 7.3.1099
...
Problem: Python: Changing directory with os.chdir() causes problems for
Vim's notion of directories.
Solution: Add vim.chdir() and vim.fchdir(). (ZyX)
2013-06-02 18:20:17 +02:00
4f2109d782
updated for version 7.3.1098
...
Problem: Python: Possible memory leaks
Solution: Add Py_XDECREF() calls. (ZyX)
2013-06-02 18:07:37 +02:00
bc41196bdc
updated for version 7.3.1097
...
Problem: Python: a few recently added items are not documented.
Solution: Update the documentation. (ZyX)
2013-06-02 17:46:40 +02:00
de71b5658f
updated for version 7.3.1096
...
Problem: Python: popitem() was not defined in a standard way.
Solution: Remove the argument from popitem(). (ZyX)
2013-06-02 17:41:54 +02:00
525666f282
updated for version 7.3.1095
...
Problem: Compiler warnings for shadowed variables. (Christian Brabandt)
Solution: Rename new_state() to alloc_state(). Remove unnecessary
declaration.
2013-06-02 16:40:55 +02:00
307aa16a69
updated for version 7.3.1094
...
Problem: New regexp engine: Attempts to match "^" at every character.
Solution: Only try "^" at the start of a line.
2013-06-02 16:34:21 +02:00
b122e9798e
updated for version 7.3.1093
...
Problem: New regexp engine: When a sub expression is empty \1 skips a
character.
Solution: Make \1 try the current position when the match is emtpy.
2013-06-02 16:07:10 +02:00
69afb7bf0a
updated for version 7.3.1092
...
Problem: Can't build with regexp debugging. NFA debug output shows wrong
pattern.
Solution: Fix debugging code for recent changes. Add the pattern to the
program.
2013-06-02 15:55:55 +02:00
5de820b916
updated for version 7.3.1091
...
Problem: New regexp engine: no error when using \z1 or \z( where it does
not work.
Solution: Give an error message.
2013-06-02 15:01:57 +02:00
efb23f26e8
updated for version 7.3.1090
...
Problem: New regexp engine does not support \z1 .. \z9 and \z(.
Solution: Implement the syntax submatches.
2013-06-01 23:02:54 +02:00
0418811869
updated for version 7.3.1089
...
Problem: Tests 86 and 87 fail on MS-Windows. (Ken Takata)
Solution: Fix platform-specific stuff. (ZyX)
2013-06-01 20:32:12 +02:00
61602c5bfe
updated for version 7.3.1088
...
Problem: New regexp engine: \@<= and \@<! are not implemented.
Solution: Implement look-behind matching. Fix off-by-one error in old
regexp engine.
2013-06-01 19:54:43 +02:00
543b7ef700
Updated runtime files and translations.
2013-06-01 14:50:56 +02:00
3737fc1c30
updated for version 7.3.1087
...
Problem: A leading star is not seen as a normal char when \{} follows.
Solution: Save and restore the parse state properly.
2013-06-01 14:42:56 +02:00
75d7a06920
updated for version 7.3.1086
...
Problem: Old regexp engine accepts illegal range, new one doesn't.
Solution: Also accept the illegal range with the new engine.
2013-06-01 13:24:24 +02:00
36b3a011d3
updated for version 7.3.1085
...
Problem: New regexp engine: Non-greedy multi doesn't work.
Solution: Implement \{-}.
2013-06-01 12:40:20 +02:00
54dafde170
updated for version 7.3.1084
...
Problem: New regexp engine: only accepts up to \{,10}.
Solution: Remove upper limit. Remove dead code with NFA_PLUS.
2013-05-31 23:18:00 +02:00
4b78063368
updated for version 7.3.1083
...
Problem: New regexp engine: Does not support \%^ and \%$.
Solution: Support matching start and end of file.
2013-05-31 22:14:52 +02:00
14f55c6f67
updated for version 7.3.1082
...
Problem: New regexp engine: Problem with \@= matching.
Solution: Save and restore nfa_match.
2013-05-31 21:45:09 +02:00
99dc19d1cc
updated for version 7.3.1081
...
Problem: Compiler warnings on 64-bit Windows.
Solution: Change variable types. (Mike Williams)
2013-05-31 20:49:31 +02:00
ca982c8d45
updated for version 7.3.1080
...
Problem: Test 86 fails.
Solution: Comment out the parts that don't work. Make it pass on 32 bit
systems.
2013-05-31 19:01:16 +02:00
96c7dfd806
updated for version 7.3.1079
...
Problem: Test 87 fails.
Solution: Fix the test for Python 3.3. (ZyX) Make it pass on 32 bit systems.
2013-05-31 18:46:11 +02:00
b06e20e6ba
updated for version 7.3.1078
...
Problem: New regexp engine: \@! doesn't work.
Solution: Implement the negated version of \@=.
2013-05-30 22:44:02 +02:00
35eacd7180
updated for version 7.3.1077
...
Problem: Python: Allocating dict the wrong way, causing a crash.
Solution: Use py_dict_alloc(). Fix some exception problems. (ZyX)
2013-05-30 22:06:33 +02:00
2d5e112284
updated for version 7.3.1076
...
Problem: New regexp engine: \@= and \& don't work.
Solution: Make these items work. Add column info to logging.
2013-05-30 21:42:13 +02:00
021e147b70
updated for version 7.3.1075
...
Problem: Compiler warning for storing a long_u in an int.
Solution: Declare the number as an int. (Mike Williams)
2013-05-30 19:18:31 +02:00
f62d942e54
updated for version 7.3.1074
...
Problem: Compiler warning for printf format. (Manuel Ortega)
Solution: Add type casts.
2013-05-30 19:01:24 +02:00
16299b57cb
updated for version 7.3.1073
...
Problem: New regexp engine may run out of states.
Solution: Allocate states dynamically. Also make the test report errors.
2013-05-30 18:45:23 +02:00
4b6ebe6dce
updated for version 7.3.1072
...
Problem: Compiler warning for unitialized variable.
Solution: Initialize it.
2013-05-30 17:49:24 +02:00
428e987b61
updated for version 7.3.1071
...
Problem: New regexp engine: backreferences don't work correctly.
Solution: Add every possible start/end position on the state stack.
2013-05-30 17:05:39 +02:00
fdde880b02
updated for version 7.3.1070
...
Problem: Vim crashes in Python tests. Compiler warning for unused function.
Solution: Disable the tests for now. Move the function.
2013-05-30 15:38:24 +02:00
fc714b35c6
updated for version 7.3.1069
...
Problem: Python: memory leaks.
Solution: Python patch 28: Purge out DICTKEY_CHECK_EMPTY macros. (ZyX)
2013-05-30 14:52:37 +02:00
018acca3bd
updated for version 7.3.1068
...
Problem: Python: Script is auto-loaded on function creation.
Solution: Python patch 27. (ZyX)
2013-05-30 13:37:28 +02:00
305b2fde13
updated for version 7.3.1067
...
Problem: Python: documentation lags behind.
Solution: Python patch 26. (ZyX)
2013-05-30 13:32:30 +02:00
8600e40a67
updated for version 7.3.1066
...
Problem: Python: Insufficient exception and error testing.
Solution: Python patch 25. (ZyX)
2013-05-30 13:28:41 +02:00
bcb40977c3
updated for version 7.3.1065
...
Problem: Python: key mapping is not standard.
Solution: Puthon patch 24: use PyMapping_Keys. (ZyX)
2013-05-30 13:22:13 +02:00
494ff7e850
updated for version 7.3.1064
...
Problem: Python: insufficient error checking.
Solution: Python patch 23. (ZyX)
2013-05-30 13:17:17 +02:00
355fd9b468
updated for version 7.3.1063
...
Problem: Python: Function is not standard.
Solution: Python patch 22: make Function subclassable. (ZyX)
2013-05-30 13:14:13 +02:00
78cddbe271
updated for version 7.3.1062
...
Problem: Python: List is not standard.
Solution: Python patch 21: Add standard methods and fields. (ZyX)
2013-05-30 13:05:58 +02:00
a9922d62e6
updated for version 7.3.1061
...
Problem: Python: Dictionary is not standard.
Solution: Python patch 20: Add standard methods and fields. (ZyX)
2013-05-30 13:01:18 +02:00
a5b725c3f6
updated for version 7.3.1060
...
Problem: Python: can't repr() a function.
Solution: Python patch 19: add FunctionRepr(). (ZyX)
2013-05-30 12:43:54 +02:00
1a3b56953e
updated for version 7.3.1059
...
Problem: Python: Using fixed size buffers.
Solution: Python patch 18: Use python's own formatter. (ZyX)
2013-05-30 12:40:39 +02:00
a1544c00c8
updated for version 7.3.1058
...
Problem: Call of funcref does not succeed in other script.
Solution: Python patch 17: add get_expanded_name(). (ZyX)
2013-05-30 12:35:52 +02:00
01a7a720ad
updated for version 7.3.1057
...
Problem: Python: not enough compatibilty.
Solution: Python patch 16: Make OutputWritelines support any sequence object
(ZyX) Note: tests fail
2013-05-30 12:26:58 +02:00
9bb77d6fe6
updated for version 7.3.1056
...
Problem: Python: possible memory leaks.
Solution: Python patch 15. (ZyX) Fix will follow later.
2013-05-30 12:14:49 +02:00
bad704fa04
updated for version 7.3.1055
...
Problem: Negated collection does not match newline.
Solution: Handle newline differently. (Hiroshi Shirosaki)
2013-05-30 11:51:08 +02:00
7e28384a9a
updated for version 7.3.1054
...
Problem: Can't build without the +autocmd feature. (Elimar Riesebieter)
Solution: Fix use of buf and curbuf.
2013-05-30 11:43:15 +02:00
07b8864111
updated for version 7.3.1053
...
Problem: Python: no flag for types with tp_traverse+tp_clear.
Solution: Python patch 14: Add Py_TPFLAGS_HAVE_GC. (ZyX)
2013-05-29 22:58:32 +02:00
1bcabe19a2
updated for version 7.3.1052
...
Problem: Python: possible SEGV and negative refcount.
Solution: Python patch 13: Fix IterIter function. (ZyX)
2013-05-29 22:52:32 +02:00
a03e631120
updated for version 7.3.1051
...
Problem: Python: possible memory leaks.
Solution: Python patch 12: fix the leaks (ZyX)
2013-05-29 22:49:26 +02:00
c8366790e8
updated for version 7.3.1050
...
Problem: Python: Typo in pyiter_to_tv.
Solution: Python patch 11. (ZyX)
2013-05-29 22:46:26 +02:00
c37b6ecd60
updated for version 7.3.1049
...
Problem: Python: no consistent naming
Solution: Python patch 10: Rename DICTKEY_GET_NOTEMPTY to DICTKEY_GET. (ZyX)
2013-05-29 22:43:37 +02:00
b38caae26c
updated for version 7.3.1048
...
Problem: Python: no consistent naming.
Solution: Python patch 9: Rename d to dict and lookupDict to lookup_dict.
(ZyX)
2013-05-29 22:39:52 +02:00
dd8aca664d
updated for version 7.3.1047
...
Problem: Python: dir() does not work properly.
Solution: Python patch 8. Add __dir__ method to all objects with custom
tp_getattr supplemented by __members__ attribute for at least
python-2* versions. __members__ is not mentioned in python-3*
dir() output even if it is accessible. (ZyX)
2013-05-29 22:36:10 +02:00
432b09c84d
updated for version 7.3.1046
...
Problem: Python: Using Py_BuildValue for building strings.
Solution: Python patch 7 and 7.5: Replace Py_BuildValue with
PyString_FromString. (ZyX)
2013-05-29 22:26:18 +02:00
21642ed1b4
updated for version 7.3.1045
...
Problem: Python: No error handling for VimToPython function.
Solution: Python patch 6. (ZyX)
2013-05-29 22:20:01 +02:00
9e822c00b1
updated for version 7.3.1044
...
Problem: Python: No {Buffer,TabPage,Window}.valid attributes.
Solution: Python patch 5: add .valid (ZyX)
2013-05-29 22:15:30 +02:00
3e734ea2c7
updated for version 7.3.1043
...
Problem: Python: Dynamic compilation with 2.3 fails.
Solution: Python patch 4. (ZyX)
2013-05-29 22:05:55 +02:00
e9ba516be2
updated for version 7.3.1042
...
Problem: Python: can't assign to vim.Buffer.name.
Solution: Python patch 3. (ZyX)
2013-05-29 22:02:22 +02:00
1bc2428e1f
updated for version 7.3.1041
...
Problem: Python: Invalid read valgrind errors.
Solution: Python patch 2: defer DICTKEY_UNREF until key is no longer needed.
(ZyX)
2013-05-29 21:37:35 +02:00
0014a53ad1
updated for version 7.3.1040
...
Problem: Python: Problems with debugging dynamic build.
Solution: Python patch 1. (ZyX)
2013-05-29 21:33:39 +02:00
423532e10d
updated for version 7.3.1039
...
Problem: New regexp engine does not support \%23c, \%<23c and the like.
Solution: Implement them. (partly by Yasuhiro Matsumoto)
2013-05-29 21:14:42 +02:00
28c2191949
updated for version 7.3.1038
...
Problem: Crash when using Cscope.
Solution: Avoid negative argument to vim_strncpy(). (Narendran
Gopalakrishnan)
2013-05-29 19:18:00 +02:00
75eb1610e1
updated for version 7.3.1037
...
Problem: Look-behind matching is very slow on long lines.
Solution: Add a byte limit to how far back an attempt is made.
2013-05-29 18:45:11 +02:00