Bram Moolenaar
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
Bram Moolenaar
49e649fc2e
updated for version 7.3.926
...
Problem: Autocommands are triggered by setwinvar() et al. Missing BufEnter
on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of
events for :tablose and :tabnew.
Solution: Fix these autocommand events. (Zyx)
2013-05-06 04:50:35 +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
71afbfe6cd
updated for version 7.3.872
...
Problem: On some systems case of file names is always ignored, on others
never.
Solution: Add the 'fileignorecase' option to control this at runtime.
Implies 'wildignorecase'.
2013-03-19 16:49:16 +01:00
Bram Moolenaar
e1704bada4
updated for version 7.3.677
...
Problem: buf_spname() is used inconsistently.
Solution: Make the return type a char_u pointer. Check the size of the
returned string.
2012-10-03 18:25:00 +02:00
Bram Moolenaar
8f5c6f003a
updated for version 7.3.570
...
Problem: ":vimgrep" does not obey 'wildignore'.
Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
2012-06-29 12:57:06 +02:00
Bram Moolenaar
38bdbd6c6f
updated for version 7.3.562
...
Problem: ":profdel" should not work when the +profile feature is disabled.
Solution: Call ex_ni(). (Yasuhiro Matsumoto)
2012-06-20 15:48:57 +02:00
Bram Moolenaar
a8596c4772
updated for version 7.3.551
...
Problem: When using :tablose a TabEnter autocommand is triggered too early.
(Karthick)
Solution: Don't trigger *Enter autocommands before closing the tab.
(Christian Brabandt)
2012-06-13 14:28:20 +02:00
Bram Moolenaar
8218f60b61
updated for version 7.3.507
...
Problem: When exiting with unsaved changes, selecting an existing file in
the file dialog, there is no dialog to ask whether the existing
file should be overwritten. (Felipe G. Nievinski)
Solution: Call check_overwrite() before writing. (Christian Brabandt)
2012-04-25 17:32:18 +02:00
Bram Moolenaar
970a1b82ec
updated for version 7.3.480
...
Problem: When using ":qa" and there is a changed buffer picking the buffer
to jump to is not very good.
Solution: Consider current and other tab pages. (Hirohito Higashi)
2012-03-23 18:39:18 +01:00
Bram Moolenaar
b549a731fb
updated for version 7.3.455
...
Problem: Using many continuation lines can be slow.
Solution: Adjust the reallocation size to the current length.
2012-02-22 18:29:33 +01:00
Bram Moolenaar
c047b9a49f
updated for version 7.3.435
...
Problem: Compiler warning for unused variable.
Solution: Move the variable inside #ifdef.
2012-02-11 20:40:55 +01:00
Bram Moolenaar
b3a6bbc7b6
updated for version 7.3.433
...
Problem: Using continued lines in a Vim script can be slow.
Solution: Instead of reallocating for every line use a growarray. (Yasuhiro
Matsumoto)
2012-02-05 23:10:30 +01:00
Bram Moolenaar
b8ff1fb5eb
updated for version 7.3.423
...
Problem: Small mistakes in comments, proto and indent.
Solution: Fix the mistakes.
Also update runtime files
2012-02-04 21:59:01 +01:00
Bram Moolenaar
6cc00c75c1
updated for version 7.3.345
2011-10-20 21:41:09 +02:00
Bram Moolenaar
d58ea07227
updated for version 7.3.233
...
Problem: ":scriptnames" and ":breaklist" show long file names.
Solution: Shorten to use "~/" when possible. (Jean-Rene David)
2011-06-26 04:25:30 +02:00
Bram Moolenaar
9b486ca391
updated for version 7.3.198
...
Problem: No completion for ":lang".
Solution: Get locales to complete from. (Dominique Pelle)
2011-05-19 18:26:40 +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
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
49789dc987
updated for version 7.3.127
...
Problem: Compiler complains about comma.
Solution: Remove comma after last enum element.
2011-02-25 14:46:09 +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
8765a4ac3a
Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)
2010-07-27 22:41:43 +02:00
Bram Moolenaar
860cae1cec
Add the conceal patch from Vince Negri.
2010-06-05 23:22:07 +02:00
Bram Moolenaar
c6af8125c7
Other solution for GTK not changing the locale.
2010-05-21 12:04:55 +02:00
Bram Moolenaar
8b9c05fa54
updated for version 7.2.383
...
Problem: Vim doesn't build cleanly with MSVC 2010.
Solution: Change a few types. (George Reilly)
2010-03-02 17:54:33 +01:00
Bram Moolenaar
54c1b4965b
updated for version 7.2.369
...
Problem: Error message is not easy to understand.
Solution: Add quotes. (SungHyun Nam)
2010-02-24 14:01:28 +01:00
Bram Moolenaar
f86f26c06a
updated for version 7.2.353
...
Problem: No command line completion for ":profile".
Solution: Complete the subcommand and file name.
2010-02-03 15:14:22 +01:00
Bram Moolenaar
8d8ef0b0b9
updated for version 7.2.344
...
Problem: Can't compile on some systems
Solution: Move the #ifdef outside of the mch_open macro. (Patrick Texier)
2010-01-20 21:41:47 +01:00
Bram Moolenaar
fc307fa1a6
updated for version 7.2.343
...
Problem: Can't compile on Win32.
Solution: Insert the missing bar.
2010-01-19 23:30:41 +01:00
Bram Moolenaar
c4e4198730
updated for version 7.2.339
...
Problem: Part of --startuptime patch is missing.
Solution: Add check for time_fd.
2010-01-19 16:31:47 +01:00
Bram Moolenaar
6b29b0e809
updated for version 7.2.338
...
Problem: Part of FD_CLOEXEC change is missing.
Solution: Include source file skipped because of typo.
2010-01-19 16:22:03 +01:00
Bram Moolenaar
3d63e3f160
updated for version 7.2.337
...
Problem: The :compiler command doesn't function properly when invoked in a
function.
Solution: Add "g:" before "current_compiler". (Yukihiro Nakadaira)
2010-01-19 16:13:50 +01:00
Bram Moolenaar
bf0c4526bf
updated for version 7.2-179
2009-05-16 19:16:33 +00:00
Bram Moolenaar
0c094b9d7f
updated for version 7.2-173
2009-05-14 20:20:33 +00:00
Bram Moolenaar
5fd0ca70d3
updated for version 7.2-169
2009-05-13 16:56:33 +00:00
Bram Moolenaar
4e2a59505e
updated for version 7.2-102
2009-02-05 19:48:25 +00:00
Bram Moolenaar
73881403a2
updated for version 7.2-100
2009-02-04 16:50:47 +00:00
Bram Moolenaar
701f7afcdf
updated for version 7.2-041
2008-11-15 13:12:07 +00:00
Bram Moolenaar
e511f29adb
updated for version 7.2-012
2008-09-07 13:50:37 +00:00
Bram Moolenaar
c236c16d08
updated for version 7.2b-000
2008-07-13 17:41:49 +00:00
Bram Moolenaar
8c8de83932
updated for version 7.2a
2008-06-24 22:58:06 +00:00
Bram Moolenaar
b3c7098365
updated for version 7.1-232
2008-01-18 10:40:55 +00:00
Bram Moolenaar
f33943efe7
updated for version 7.1-230
2008-01-15 21:17:30 +00:00
Bram Moolenaar
76929293e0
updated for version 7.1-211
2008-01-06 19:07:36 +00:00
Bram Moolenaar
383c6f5579
updated for version 7.1-200
2008-01-04 15:01:07 +00:00
Bram Moolenaar
ee3f7a51c8
updated for version 7.1-177
2008-01-01 13:17:56 +00:00
Bram Moolenaar
b8017e7a03
updated for version 7.1b
2007-05-10 18:59:07 +00:00
Bram Moolenaar
4142324d25
updated for version 7.0-241
2007-05-03 20:11:13 +00:00
Bram Moolenaar
373154b00c
updated for version 7.0-195
2007-02-13 05:19:30 +00:00