1
0
forked from aniani/vim

Commit Graph

  • 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) v7.4.128 Bram Moolenaar 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) v7.4.127 Bram Moolenaar 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) v7.4.126 Bram Moolenaar 2013-12-12 20:25:44 +01:00
  • dfb18411cf Updated runtime files. Bram Moolenaar 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) v7.4.125 Bram Moolenaar 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) v7.4.124 Bram Moolenaar 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) v7.4.123 Bram Moolenaar 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) v7.4.122 Bram Moolenaar 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". v7.4.121 Bram Moolenaar 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) v7.4.120 Bram Moolenaar 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) v7.4.119 Bram Moolenaar 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) v7.4.118 Bram Moolenaar 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) v7.4.117 Bram Moolenaar 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) v7.4.116 Bram Moolenaar 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) v7.4.115 Bram Moolenaar 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. v7.4.114 Bram Moolenaar 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) v7.4.113 Bram Moolenaar 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. v7.4.112 Bram Moolenaar 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) v7.4.111 Bram Moolenaar 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) v7.4.110 Bram Moolenaar 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) v7.4.109 Bram Moolenaar 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) v7.4.108 Bram Moolenaar 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) v7.4.107 Bram Moolenaar 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) v7.4.106 Bram Moolenaar 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. v7.4.105 Bram Moolenaar 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. v7.4.104 Bram Moolenaar 2013-11-28 14:20:17 +01:00
  • 3678208477 Updated runtime files. Bram Moolenaar 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) v7.4.103 Bram Moolenaar 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) v7.4.102 Bram Moolenaar 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. v7.4.101 Bram Moolenaar 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. v7.4.100 Bram Moolenaar 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) v7.4.099 Bram Moolenaar 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) v7.4.098 Bram Moolenaar 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) v7.4.097 Bram Moolenaar 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) v7.4.096 Bram Moolenaar 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) v7.4.095 Bram Moolenaar 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) v7.4.094 Bram Moolenaar 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) v7.4.093 Bram Moolenaar 2013-11-17 20:17:12 +01:00
  • 4b60a6cdb3 Update runtime files. Bram Moolenaar 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) v7.4.092 Bram Moolenaar 2013-11-14 03:54:07 +01:00
  • e874744e94 updated for version 7.4.091 Problem: Missing semicolon. Solution: Add the semicolon. v7.4.091 Bram Moolenaar 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) v7.4.090 Bram Moolenaar 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) v7.4.089 Bram Moolenaar 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) v7.4.088 Bram Moolenaar 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) v7.4.087 Bram Moolenaar 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) v7.4.086 Bram Moolenaar 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) v7.4.085 Bram Moolenaar 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) v7.4.084 Bram Moolenaar 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) v7.4.083 Bram Moolenaar 2013-11-09 05:30:26 +01:00
  • 8e69b4a319 Updated runtime files. Bram Moolenaar 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. v7.4.082 Bram Moolenaar 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) v7.4.081 Bram Moolenaar 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. v7.4.080 Bram Moolenaar 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) v7.4.079 Bram Moolenaar 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) v7.4.078 Bram Moolenaar 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. v7.4.077 Bram Moolenaar 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) v7.4.076 Bram Moolenaar 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) v7.4.075 Bram Moolenaar 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. v7.4.074 Bram Moolenaar 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) v7.4.073 Bram Moolenaar 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) v7.4.072 Bram Moolenaar 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. v7.4.071 Bram Moolenaar 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. v7.4.070 Bram Moolenaar 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. v7.4.069 Bram Moolenaar 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) v7.4.068 Bram Moolenaar 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) v7.4.067 Bram Moolenaar 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) v7.4.066 Bram Moolenaar 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) v7.4.065 Bram Moolenaar 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) v7.4.064 Bram Moolenaar 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) v7.4.063 Bram Moolenaar 2013-11-04 00:34:53 +01:00
  • d5d015d457 Update runtime files. Bram Moolenaar 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(). v7.4.062 Bram Moolenaar 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. v7.4.061 Bram Moolenaar 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) v7.4.060 Bram Moolenaar 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. v7.4.059 Bram Moolenaar 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) v7.4.058 Bram Moolenaar 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(). v7.4.057 Bram Moolenaar 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) v7.4.056 Bram Moolenaar 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) v7.4.055 Bram Moolenaar 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) v7.4.054 Bram Moolenaar 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 ". v7.4.053 Bram Moolenaar 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. v7.4.052 Bram Moolenaar 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. v7.4.051 Bram Moolenaar 2013-10-06 15:46:11 +02:00
  • b133208080 Runtime file updates. Bram Moolenaar 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) v7.4.050 Bram Moolenaar 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) v7.4.049 Bram Moolenaar 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) v7.4.048 Bram Moolenaar 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) v7.4.047 Bram Moolenaar 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) v7.4.046 Bram Moolenaar 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) v7.4.045 Bram Moolenaar 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. v7.4.044 Bram Moolenaar 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) v7.4.043 Bram Moolenaar 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) v7.4.042 Bram Moolenaar 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) v7.4.041 Bram Moolenaar 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) v7.4.040 Bram Moolenaar 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) v7.4.039 Bram Moolenaar 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) v7.4.038 Bram Moolenaar 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. v7.4.037 Bram Moolenaar 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. v7.4.036 Bram Moolenaar 2013-09-25 16:41:54 +02:00
  • 18441ae2cd Fix problem with 'iskeyword' in CSS syntax. Bram Moolenaar 2013-09-24 23:30:38 +02:00