Bram Moolenaar
def5abe0a2
patch 7.4.1751
...
Problem: Crash when 'tagstack' is off. (Dominique Pelle)
Solution: Fix it. (Hirohito Higashi)
2016-04-18 19:46:15 +02:00
Bram Moolenaar
107e1eef1d
patch 7.4.1719
...
Problem: Leaking memory when there is a cycle involving a job and a
partial.
Solution: Add a copyID to job and channel. Set references in items referred
by them. Go through all jobs and channels to find unreferenced
items. Also, decrement reference counts when garbage collecting.
2016-04-08 17:07:19 +02:00
Bram Moolenaar
7f8989dd8a
patch 7.4.1552
...
Problem: ":colorscheme" does not use 'packpath'.
Solution: Also use in "start" and "opt" directories in 'packpath'.
2016-03-12 22:11:39 +01:00
Bram Moolenaar
764b23c8fd
patch 7.4.1214
...
Problem: Using old style function declarations.
Solution: Change to new style function declarations. (script by Hirohito
Higashi)
2016-01-30 21:10:09 +01:00
Bram Moolenaar
baaa7e9ec7
patch 7.4.1199
...
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-29 22:47:03 +01:00
Bram Moolenaar
0f6562e903
patch 7.4.941
...
Problem: There is no way to ignore case only for tag searches.
Solution: Add the 'tagcase' option. (Gary Johnson)
2015-11-24 18:48:14 +01:00
Bram Moolenaar
01cf376da1
patch 7.4.746
...
Problem: ":[count]tag" is not always working. (cs86661)
Solution: Set cur_match a bit later. (Hirohito Higashi)
2015-06-19 16:45:43 +02:00
Bram Moolenaar
fe5aab63fe
updated for version 7.4.240
...
Problem: ":tjump" shows "\n" as "\\n".
Solution: Skip over "\" that escapes a backslash. (Gary Johnson)
2014-04-02 17:19:04 +02:00
Bram Moolenaar
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
Bram Moolenaar
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
Bram Moolenaar
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
Bram Moolenaar
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
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
fca93c093e
updated for version 7.3.660
...
Problem: ":help !" jumps to help for ":!".
Solution: Adjust check for tag header line. (Andy Wokula)
2012-09-12 18:19:46 +02:00
Bram Moolenaar
b4a80cdd91
updated for version 7.3.650
...
Problem: Completion after ":help \{-" gives an error message and messes up
the command line.
Solution: Cancel the tag search if the pattern can't be compiled. (Yasuhiro
Matsumoto)
2012-09-05 15:03:30 +02: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
08fc756582
updated for version 7.3.373
...
Problem: A tags file with an extremely long name may cause an infinite loop.
Solution: When encountering a long name switch to linear search.
2011-12-14 14:15:16 +01:00
Bram Moolenaar
0a11f8ce4e
updated for version 7.3.366
...
Problem: A tags file with an extremely long name causes errors.
Solution: Ignore tags that are too long. (Arno Renevier)
2011-12-08 15:12:11 +01:00
Bram Moolenaar
e06461a821
updated for version 7.3.336
...
Problem: When a tags file specifies an encoding different from 'enc' it
may hang and using a pattern doesn't work.
Solution: Convert the whole line. Continue reading the header after the
SORT tag. Add test83. (Yukihiro Nakadaira)
2011-10-12 19:53:52 +02:00
Bram Moolenaar
d9462e394a
updated for version 7.3.161
...
Problem: Items on the stack may be too big.
Solution: Make items static or allocate them.
2011-04-11 21:35:11 +02:00
Bram Moolenaar
ef9d6aa70d
updated for version 7.3.160
...
Problem: Unsafe string copying.
Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead
of strcat().
2011-04-11 16:56:35 +02:00
Bram Moolenaar
128773b21d
updated for version 7.3.129
...
Problem: Using integer like a boolean.
Solution: Nicer check for integer being non-zero.
2011-02-25 15:13:48 +01:00
Bram Moolenaar
9c26303293
updated for version 7.3.085
...
Problem: Inconsistency with preproc symbols. void * computation.
Solution: Include vimio.h from vim.h. Add type cast.
2010-12-17 18:06:06 +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
d5ee95f964
Fix compiler warning.
2010-08-10 09:25:48 +02:00
Bram Moolenaar
bc226b6ded
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
2010-08-09 22:14:48 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
8bcf9654dc
updated for version 7.2.443
...
Problem: Using taglist() on a tag file with duplicate fields generates an
internal error. (Peter Odding)
Solution: Check for duplicate field names.
2010-06-12 20:12:02 +02:00
Bram Moolenaar
25153e127d
updated for version 7.2.371
...
Problem: Build problems on Tandem NonStop.
Solution: A few changes to #ifdefs (Joachim Schmitz)
2010-02-24 14:47:08 +01: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
f08fa44a1a
updated for version 7.2-124
2009-02-22 23:54:59 +00:00
Bram Moolenaar
086fad3a27
updated for version 7.2-116
2009-02-21 21:58:24 +00:00
Bram Moolenaar
51460cd634
updated for version 7.2-083
2009-01-13 16:28:21 +00:00
Bram Moolenaar
67a060e9ad
updated for version 7.2-068
2008-12-09 11:13:06 +00:00
Bram Moolenaar
de1656ec20
updated for version 7.2b-006
2008-07-18 09:26:30 +00:00
Bram Moolenaar
c236c16d08
updated for version 7.2b-000
2008-07-13 17:41:49 +00:00
Bram Moolenaar
3577c6fafb
updated for version 7.2a
2008-06-24 21:16:56 +00:00
Bram Moolenaar
4d0ec16687
updated for version 7.1-256
2008-02-20 11:24:52 +00:00
Bram Moolenaar
91a4e82243
updated for version 7.1-236
2008-01-19 14:59:58 +00:00
Bram Moolenaar
3d27a45f9a
updated for version 7.1b
2007-05-10 17:44:18 +00:00
Bram Moolenaar
9e1d2839c6
updated for version 7.1a
2007-05-06 12:51:41 +00:00
Bram Moolenaar
685295c3c4
updated for version 7.0-135
2006-10-15 20:37:38 +00:00
Bram Moolenaar
82ce8c7d0f
updated for version 7.0-096
2006-09-10 11:56:59 +00:00
Bram Moolenaar
25e2c9e3e6
updated for version 7.0f03
2006-04-27 21:40:34 +00:00
Bram Moolenaar
fc1421eb53
updated for version 7.0e04
2006-04-20 22:17:20 +00:00
Bram Moolenaar
c1e37901fc
updated for version 7.0e02
2006-04-18 21:55:01 +00:00
Bram Moolenaar
a93fa7ee78
updated for version 7.0e01
2006-04-17 22:14:47 +00:00
Bram Moolenaar
d2cec5b043
updated for version 7.0c02
2006-03-28 21:08:56 +00:00
Bram Moolenaar
c01140a1a0
updated for version 7.0b
2006-03-24 22:21:52 +00:00