Bram Moolenaar
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
Bram Moolenaar
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
Bram Moolenaar
84a05acc8c
updated for version 7.3.925
...
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
2013-05-06 04:24:17 +02:00
Bram Moolenaar
7bcb30e913
updated for version 7.3.877
...
Problem: Forward searching with search() is broken.
Solution: Fix it and add tests. (Sung Pae)
2013-04-03 21:14:29 +02:00
Bram Moolenaar
db333a5b8d
updated for version 7.3.871
...
Problem: search('^$', 'c') does not use the empty match under the cursor.
Solution: Special handling of the 'c' flag. (Christian Brabandt)
Add tests.
2013-03-19 15:27:48 +01:00
Bram Moolenaar
187d3acb7f
updated for version 7.3.829
...
Problem: When compiled with the +rightleft feature 'showmatch' also shows a
match for the opening paren. When 'revins' is set the screen may
scroll.
Solution: Only check the opening paren when the +rightleft feature was
enabled. Do not show a match that is not visible. (partly by
Christian Brabandt)
2013-02-20 18:39:13 +01:00
Bram Moolenaar
55b7b7eeb5
updated for version 7.3.779
...
Problem: Backwards search lands in wrong place when started on a multibyte
character.
Solution: Do not set extra_col for a backwards search. (Sung Pae)
2013-01-23 16:43:11 +01:00
Bram Moolenaar
8c7694a864
updated for version 7.3.769
...
Problem: 'matchpairs' does not work with multi-byte characters.
Solution: Make it work. (Christian Brabandt)
2013-01-17 17:02:05 +01:00
Bram Moolenaar
718f007499
updated for version 7.3.673
...
Problem: Using "gN" while 'selection' is "exclusive" misses one character.
(Ben Fritz)
Solution: Check the direction when compensating for exclusive selection.
(Christian Brabandt)
2012-10-03 13:35:51 +02:00
Bram Moolenaar
57c0ea8692
updated for version 7.3.647
...
Problem: "gnd" doesn't work correctly in Visual mode.
Solution: Handle Visual mode differently in "gn". (Christian Brabandt)
2012-09-05 12:16:45 +02:00
Bram Moolenaar
dde0efed85
updated for version 7.3.636
...
Problem: Not all zero-width matches handled correctly for "gn".
Solution: Move zero-width detection to a separate function. (Christian
Brabandt)
2012-08-23 15:53:05 +02:00
Bram Moolenaar
ba6ba36fa2
updated for version 7.3.625
...
Problem: "gn" does not handle zero-width matches correctly.
Solution: Handle zero-width patterns specially. (Christian Brabandt)
2012-08-08 15:27:57 +02:00
Bram Moolenaar
09168a77e4
updated for version 7.3.621
...
Problem: Compiler warnings on 64 bit windows.
Solution: Add type casts. (Mike Williams)
2012-08-02 21:24:42 +02:00
Bram Moolenaar
8a0f3c78fe
updated for version 7.3.618
...
Problem: Still doesn't compile with small features.
Solution: Move current_search() out of #ifdef. (Dominique Pelle)
2012-07-29 12:55:32 +02:00
Bram Moolenaar
641e286153
updated for version 7.3.610
...
Problem: Cannot operate on the text that a search pattern matches.
Solution: Add the "gn" and "gN" commands. (Christian Brabandt)
2012-07-25 15:06:34 +02:00
Bram Moolenaar
058bdcfd5d
updated for version 7.3.609
...
Problem: File names in :checkpath! output are garbled.
Solution: Check for \zs in the pattern. (Lech Lorens)
2012-07-25 13:46:30 +02:00
Bram Moolenaar
94c465c53d
updated for version 7.3.606
...
Problem: CTRL-P completion has a problem with multi-byte characters.
Solution: Check for next character being NUL properly. (Yasuhiro Matsumoto)
2012-07-19 17:18:26 +02:00
Bram Moolenaar
8134039744
updated for version 7.3.541
...
Problem: When joining lines comment leaders need to be removed manually.
Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
2012-06-06 16:12:59 +02:00
Bram Moolenaar
76b9b3696c
updated for version 7.3.426
...
Problem: With '$' in 'cpoptions' the $ is not displayed in the first
column.
Solution: Use -1 instead of 0 as a special value. (Hideki Eiraku and
Hirohito Higashi)
2012-02-04 23:35:00 +01:00
Bram Moolenaar
16c31fe1b7
updated for version 7.3.420
...
Problem: "it" and "at" don't work properly with a dash in the tag name.
Solution: Require a space to match the tag name. (Christian Brabandt)
2012-01-26 20:58:26 +01:00
Bram Moolenaar
70b2a56d5a
updated for version 7.3.400
...
Problem: Compiler warnings for shadowed variables.
Solution: Remove or rename the variables.
2012-01-10 22:26:17 +01:00
Bram Moolenaar
aa0e80471f
updated for version 7.3.331
...
Problem: "vit" selects wrong text when a tag name starts with the same text
as an outer tag name. (Ben Fritz)
Solution: Add "\>" to the pattern to check for word boundary.
2011-10-04 17:00:20 +02:00
Bram Moolenaar
19fd09a78f
updated for version 7.3.246
...
Problem: Repeating "f4" in "4444" skips one 4.
Solution: Check the t_cmd flag. (Christian Brabandt)
2011-07-15 13:21:30 +02:00
Bram Moolenaar
8b3e0330ba
updated for version 7.3.235
...
Problem: ";" gets stuck on a "t" command, it's not useful.
Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
2011-06-26 05:36:34 +02:00
Bram Moolenaar
e60acc180b
updated for version 7.3.187
...
Problem: The RISC OS port has obvious errors and is not being maintained.
Solution: Remove the RISC OS files and code.
2011-05-10 16:41:25 +02:00
Bram Moolenaar
b4b0a08c81
updated for version 7.3.135
...
Problem: When there is no previous substitute pattern, the previous search
pattern is used. The other way around doesn't work.
Solution: When there is no previous search pattern, use the previous
substitute pattern if possible. (Christian Brabandt)
2011-02-25 18:38:36 +01:00
Bram Moolenaar
3368ea2152
updated for version 7.3.008
...
Problem: 'cursorbind' is kept in places where 'scrollbind' is reset.
Solution: Reset 'cursorbind'.
2010-09-21 16:56:35 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
a9dc375744
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
...
Toft)
2010-07-11 20:46:53 +02:00
Bram Moolenaar
b2c0350c67
Make updating text for conceal mode simpler. A few compiler warning fixes.
2010-07-02 20:20:09 +02:00
Bram Moolenaar
860cae1cec
Add the conceal patch from Vince Negri.
2010-06-05 23:22:07 +02:00
Bram Moolenaar
2c4278fc73
updated for version 7.2-180
2009-05-17 11:33:22 +00:00
Bram Moolenaar
78a1531005
updated for version 7.2-174
2009-05-15 19:33:18 +00:00
Bram Moolenaar
f242762d0d
updated for version 7.2-160
2009-04-22 16:45:21 +00:00
Bram Moolenaar
fe81d45db4
updated for version 7.2-157
2009-04-22 14:44:41 +00:00
Bram Moolenaar
9b22871b6e
updated for version 7.2b-007
2008-07-18 10:05:58 +00:00
Bram Moolenaar
8c8de83932
updated for version 7.2a
2008-06-24 22:58:06 +00:00
Bram Moolenaar
aad8664d07
updated for version 7.1-270
2008-03-10 20:34:59 +00:00
Bram Moolenaar
5bcbd537b4
updated for version 7.1-258
2008-02-20 12:43:01 +00:00
Bram Moolenaar
2a6f21144c
updated for version 7.1-242
2008-01-26 20:15:46 +00:00
Bram Moolenaar
91a4e82243
updated for version 7.1-236
2008-01-19 14:59:58 +00:00
Bram Moolenaar
76929293e0
updated for version 7.1-211
2008-01-06 19:07:36 +00:00
Bram Moolenaar
78d4abaa93
updated for version 7.1-178
2008-01-01 14:43:35 +00:00
Bram Moolenaar
abc9773580
updated for version 7.1-058
2007-08-08 20:49:37 +00:00
Bram Moolenaar
7a42fa3cb7
updated for version 7.1-025
2007-07-10 11:28:55 +00:00
Bram Moolenaar
aec1179e5e
updated for version 7.1-024
2007-07-10 11:09:36 +00:00
Bram Moolenaar
9a149791fc
updated for version 7.1-023
2007-07-10 10:38:02 +00:00
Bram Moolenaar
1864a4e0fd
updated for version 7.1-005
2007-06-19 10:56:05 +00:00
Bram Moolenaar
b8017e7a03
updated for version 7.1b
2007-05-10 18:59:07 +00:00
Bram Moolenaar
8c471fa0b3
updated for version 7.0-188
2007-01-16 21:14:45 +00:00