Bram Moolenaar
920694c1b6
patch 7.4.2236
...
Problem: The 'langnoremap' option leads to double negatives. And it does
not work for the last character of a mapping.
Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for
backwards compatibility. Make it work for the last character of a
mapping. Make the test work.
2016-08-21 17:45:02 +02:00
Bram Moolenaar
d3c907b5d2
patch 7.4.2223
...
Problem: Buffer overflow when using latin1 character with feedkeys().
Solution: Check for an illegal character. Add a test.
2016-08-17 21:32:09 +02:00
Bram Moolenaar
840268400d
patch 7.4.2062
...
Problem: Using dummy variable to compute struct member offset.
Solution: Use offsetof().
2016-07-17 20:37:43 +02:00
Bram Moolenaar
509ce2a558
patch 7.4.1537
...
Problem: Too many feature flags for pipes, jobs and channels.
Solution: Only use FEAT_JOB_CHANNEL.
2016-03-11 22:52:15 +01:00
Bram Moolenaar
0c171716c0
patch 7.4.1489
...
Problem: "inline" is not supported by old MSVC.
Solution: use "__inline". (Ken Takata)
2016-03-04 22:57:20 +01:00
Bram Moolenaar
6300317b15
patch 7.4.1487
...
Problem: For WIN32 isinf() is defined as a macro.
Solution: Define it as an inline function. (ZyX)
2016-03-04 22:19:21 +01:00
Bram Moolenaar
fefecb0fbe
patch 7.4.1440
...
Problem: Can't build on Windows.
Solution: Change #ifdefs. Only define isnan when used.
2016-02-27 21:27:20 +01:00
Bram Moolenaar
136f29a91d
patch 7.4.1437
...
Problem: Old system doesn't have isinf() and NAN. (Ben Fritz)
Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with
configure. Use a replacement when missing. (Kazunobu Kuriyama)
2016-02-27 20:14:15 +01:00
Bram Moolenaar
669cac0a80
patch 7.4.1416
...
Problem: Using "u_char" intead of "char_u", which doesn't work everywhere.
(Jörg Plate)
Solution: Use "char_u" always.
2016-02-25 15:25:03 +01:00
Bram Moolenaar
48e330aff9
patch 7.4.1399
...
Problem: The MS-DOS code does not build.
Solution: Remove the old MS-DOS code.
2016-02-23 14:53:34 +01:00
Bram Moolenaar
ee1cffc07a
patch 7.4.1380
...
Problem: The job exit callback is not implemented.
Solution: Add the "exit-cb" option.
2016-02-21 19:14:41 +01:00
Bram Moolenaar
e0874f8cbc
patch 7.4.1169
...
Problem: The socket I/O is intertwined with the netbeans code.
Solution: Start refactoring the netbeans communication to split off the
socket I/O. Add the +channel feature.
2016-01-24 20:36:41 +01:00
Bram Moolenaar
88e8f9f144
patch 7.4.1147
...
Problem: Conflict for "chartab". (Kazunobu Kuriyama)
Solution: Rename the global one to something less obvious. Move it into
src/chartab.c.
2016-01-20 22:48:02 +01:00
Bram Moolenaar
e7fedb6ebe
patch 7.4.1008
...
Problem: The OS/2 code pollutes the source while nobody uses it these days.
Solution: Drop the support for OS/2.
2015-12-31 19:07:19 +01:00
Bram Moolenaar
93c88e0f6a
patch 7.4.866
...
Problem: Crash when changing the 'tags' option from a remote command.
(Benjamin Fritz)
Solution: Instead of executing messages immediately, use a queue, like for
netbeans. (James Kolb)
2015-09-15 14:12:05 +02:00
Bram Moolenaar
43335ea394
patch 7.4.863
...
Problem: plines_nofill() used without the diff feature.
Solution: Define PLINES_NOFILL().
2015-09-09 20:59:37 +02:00
Bram Moolenaar
42a4512f62
patch 7.4.774
...
Problem: When using the CompleteDone autocommand event it's difficult to
get to the completed items.
Solution: Add the v:completed_items variable. (Shougo Matsu)
2015-07-10 17:56:23 +02:00
Bram Moolenaar
4391cf98ec
updated for version 7.4.502
...
Problem: Language mapping also applies to mapped characters.
Solution: Add the 'langnoremap' option, when on 'langmap' does not apply to
mapped characters. (Christian Brabandt)
2014-11-05 17:44:52 +01:00
Bram Moolenaar
24dc230871
updated for version 7.4.295
...
Problem: Various typos, bad white space and unclear comments.
Solution: Fix typos. Improve white space. Update comments.
2014-05-13 20:19:58 +02:00
Bram Moolenaar
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
Bram Moolenaar
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
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
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
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
55d5c0348c
Whitespace cleanup.
2010-07-17 23:52:29 +02:00
Bram Moolenaar
04c9bafa71
Made crypt/decrypt faster.
2010-06-01 23:37:39 +02:00
Bram Moolenaar
3f269675d4
updated for version 7.2-269
2009-11-03 11:11:11 +00:00
Bram Moolenaar
2c4278fc73
updated for version 7.2-180
2009-05-17 11:33:22 +00:00
Bram Moolenaar
28e8d27868
updated for version 7.2-109
2009-02-21 19:28:48 +00:00
Bram Moolenaar
deefb63bfb
updated for version 7.1-079
2007-08-15 18:41:34 +00:00
Bram Moolenaar
ff1d0d4cf5
updated for version 7.1b
2007-05-10 17:24:16 +00:00
Bram Moolenaar
498efdb7f6
updated for version 7.0-087
2006-09-05 14:31:54 +00:00
Bram Moolenaar
e1438bb8d0
updated for version 7.0211
2006-03-01 22:01:55 +00:00
Bram Moolenaar
7862282f2e
updated for version 7.0135
2005-08-23 21:00:13 +00:00
Bram Moolenaar
0fa313a718
updated for version 7.0127
2005-08-10 21:07:57 +00:00
Bram Moolenaar
78984f503c
updated for version 7.0121
2005-08-01 07:19:10 +00:00
Bram Moolenaar
e6b165e0f4
updated for version 7.0098
2005-06-30 21:56:01 +00:00
Bram Moolenaar
8348ea624c
updated for version 7.0085
2005-06-14 22:05:40 +00:00
Bram Moolenaar
402d2fea70
updated for version 7.0066
2005-04-15 21:00:38 +00:00
Bram Moolenaar
281bdcec60
updated for version 7.0044
2005-01-25 21:53:18 +00:00
Bram Moolenaar
fd371684fa
updated for version 7.0038
2005-01-14 21:42:54 +00:00
Bram Moolenaar
1cd871b534
updated for version 7.0023
2004-12-19 22:46:22 +00:00
Bram Moolenaar
269ec658f0
updated for version 7.0013
2004-07-29 08:43:53 +00:00
Bram Moolenaar
592e0a2a1d
updated for version 7.0005
2004-07-03 16:05:59 +00:00
Bram Moolenaar
071d4279d6
updated for version 7.0001
2004-06-13 20:20:40 +00:00