Bram Moolenaar
a238431302
updated for version 7.3.1141
...
Problem: Win32: Check for available memory is not reliable and adds
overhead.
Solution: Remove mch_avail_mem(). (Mike Williams)
2013-06-07 19:17:14 +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
af62ff3696
updated for version 7.3.870
...
Problem: Compiler warnings when using MingW 4.5.3.
Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
2013-03-19 14:48:29 +01:00
Bram Moolenaar
693e40c2cd
updated for version 7.3.836
...
Problem: Clipboard does not work on Win32 when compiled with Cygwin.
Solution: Move the Win32 clipboard code to a separate file and use it when
building with os_unix.c. (Frodak Baksik, Ken Takata)
2013-02-26 14:56:42 +01:00
Bram Moolenaar
ffeedec023
updated for version 7.3.814
...
Problem: Can't input multibyte characters on Win32 console if 'encoding' is
different from current codepage.
Solution: Use convert_input_safe() instead of convert_input(). Make
string_convert_ext() return an error for incomplete input. (Ken
Takata)
2013-02-13 16:49:58 +01:00
Bram Moolenaar
8288149866
updated for version 7.3.719
...
Problem: Cannot run new version of cproto, it fails on missing include
files.
Solution: Add lots of #ifndef PROTO
2012-11-20 16:53:39 +01:00
Bram Moolenaar
17aa8cc255
updated for version 7.3.707
...
Problem: Problems loading a library for a file name with non-latin
characters.
Solution: Use wide system functions when possible. (Ken Takata)
2012-10-21 21:38:45 +02:00
Bram Moolenaar
faca84059a
updated for version 7.3.701
...
Problem: MS-Windows: Crash with stack overflow when setting 'encoding'.
Solution: Handle that loading the iconv library may be called recursively.
(Jiri Sedlak)
2012-10-21 02:37:10 +02:00
Bram Moolenaar
e4195c5d84
updated for version 7.3.619
...
Problem: When executing a shell command Vim may become slow to respond.
Solution: Don't wait after every processed message. (idea by Yasuhiro
Matsumoto)
2012-08-02 12:31:44 +02:00
Bram Moolenaar
1a0cee53d4
updated for version 7.3.605
...
Problem: MS-Windows: Can't compile with older compilers. (Titov Anatoly)
Solution: Add #ifdef for MEMORYSTATUSEX.
2012-07-19 11:37:26 +02:00
Bram Moolenaar
11b73d668f
updated for version 7.3.577
...
Problem: Size of memory does not fit in 32 bit unsigned.
Solution: Use Kbyte instead of byte. Call GlobalMemoryStatusEx() instead of
GlobalMemoryStatus() when available.
2012-06-29 15:51:30 +02:00
Bram Moolenaar
f6a2b08c54
updated for version 7.3.571
...
Problem: Duplicated condition.
Solution: Remove one. (Dominique Pelle)
2012-06-29 13:14:03 +02:00
Bram Moolenaar
4336cdf318
updated for version 7.3.459
...
Problem: Win32: Warnings for type conversion.
Solution: Add type casts. (Mike Williams)
2012-02-29 13:58:47 +01:00
Bram Moolenaar
ee7d100091
updated for version 7.3.450
...
Problem: Win32: Still a problem with "!start /b".
Solution: Fix pointer use. (Yasuhiro Matsumoto)
2012-02-22 15:34:08 +01:00
Bram Moolenaar
fb7df7be2f
updated for version 7.3.448
...
Problem: Win32: Still a problem with "!start /b".
Solution: Escape only '|'. (Yasuhiro Matsumoto)
2012-02-22 13:07:05 +01:00
Bram Moolenaar
6b707b4b82
updated for version 7.3.447
...
Problem: Win32: External commands with "start" do not work.
Solution: Unescape part of the command. (Yasuhiro Matsumoto)
2012-02-21 21:22:44 +01:00
Bram Moolenaar
034b115568
updated for version 7.3.445
...
Problem: Can't properly escape commands for cmd.exe.
Solution: Default 'shellxquote' to '('. Append ')' to make '(command)'.
No need to use "/s" for 'shellcmdflag'.
2012-02-19 18:19:30 +01:00
Bram Moolenaar
2eba18255e
updated for version 7.3.287
...
Problem: Can't compile with MSVC and tiny options.
Solution: Move variables and #ifdefs. (Sergey Khorev)
2011-08-27 15:10:04 +02:00
Bram Moolenaar
8c85fa3b26
updated for version 7.3.277
...
Problem: MS-Windows: some characters do not show in dialogs.
Solution: Use the wide methods when available. (Yanwei Jia)
2011-08-10 17:08:03 +02:00
Bram Moolenaar
4b9669f1dc
updated for version 7.3.240
...
Problem: External commands can't use pipes on MS-Windows.
Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent
Berthoux)
2011-07-07 16:20:52 +02:00
Bram Moolenaar
bd8608d979
updated for version 7.3.203
...
Problem: MS-Windows: Can't run an external command without a console window.
Solution: Support ":!start /b cmd". (Xaizek)
2011-05-25 17:06:22 +02:00
Bram Moolenaar
3c9c99cb2c
updated for version 7.3.177
...
Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is
"utf-8".
Solution: Convert to utf-16. (Yukihiro Nakadaira)
2011-05-05 18:31:59 +02:00
Bram Moolenaar
1c32dff7d6
updated for version 7.3.172
...
Problem: MS-Windows: rename() might delete the file if the name differs but
it's actually the same file.
Solution: Use the file handle to check if it's the same file. (Yukihiro
Nakadaira)
2011-05-05 16:41:24 +02:00
Bram Moolenaar
3c2d6534ef
updated for version 7.3.108
...
Problem: Useless check for NULL when calling vim_free().
Solution: Remove the check. (Dominique Pelle)
2011-02-01 13:48:53 +01:00
Bram Moolenaar
b57aa92d2c
updated for version 7.3.087
...
Problem: EINTR is not always defined.
Solution: Include errno.h in vim.h.
2010-12-17 20:24:01 +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
96e5ceed93
updated for version 7.3.063
...
Problem: Win32: Running a filter command makes Vim lose focus.
Solution: Use SW_SHOWMINNOACTIVE instead of SW_SHOWMINIMIZED. (Hong Xu)
2010-11-24 12:35:21 +01:00
Bram Moolenaar
27d9eceb66
updated for version 7.3.051
...
Problem: Crash when /home/mool/bin:/usr/local/sbin:/usr/local/bin:/home/mool/java/jdk/bin:/bin:/sbin:/usr/bin:/usr/games:/usr/sbin:/usr/X11R6/bin:/usr/local/linux-jdk1.3.1/bin:/usr/local/lib/python2.2/Tools/idle is empty.
Solution: Check for vim_getenv() returning NULL. (Yasuhiro Matsumoto)
2010-11-10 15:37:05 +01:00
Bram Moolenaar
6b5ef067a5
updated for version 7.3.037
...
Problem: Compiler warnings for loss of data. (Mike Williams)
Solution: Add type casts.
2010-10-27 12:18:00 +02:00
Bram Moolenaar
8bbe993c79
updated for version 7.3.035
...
Problem: Stray semicolon after if statement. (Hari G)
Solution: Remove the semicolon.
2010-10-24 14:33:43 +02:00
Bram Moolenaar
ebbcb824ba
updated for version 7.3.034
...
Problem: Win32: may be loading .dll from the wrong directory.
Solution: Go to the Vim executable directory when opening a library.
2010-10-23 14:02:54 +02:00
Bram Moolenaar
464c92545a
updated for version 7.3.027
...
Problem: Opening a file on a network share is very slow.
Solution: When fixing file name case append "\*" to directory, server and
network share names. (David Anderson, John Beckett)
2010-10-13 20:37:41 +02:00
Bram Moolenaar
d32a99a6d9
updated for version 7.3.009
...
Problem: Win32: Crash on Windows when using a bad argument for strftime().
(Christian Brabandt)
Solution: Use the bad_param_handler(). (Mike Williams)
2010-09-21 17:29:23 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
7db5fc838a
Fix uninit memory read in undo code. Fix uint32_t in proto file.
...
A few minor changes.
2010-05-24 11:59:29 +02:00
Bram Moolenaar
36f692dd8c
updated for version 7.2-049
2008-11-20 16:10:17 +00:00
Bram Moolenaar
e6a91fd994
updated for version 7.2b-019
2008-07-24 18:51:11 +00:00
Bram Moolenaar
3577c6fafb
updated for version 7.2a
2008-06-24 21:16:56 +00:00
Bram Moolenaar
0fde290e55
updated for version 7.1-282
2008-03-16 13:54:13 +00:00
Bram Moolenaar
85a3e5c7c6
updated for version 7.1-158
2007-11-20 16:22:16 +00:00
Bram Moolenaar
41a0903523
updated for version 7.1-129
2007-10-01 18:34:34 +00:00
Bram Moolenaar
ff1d0d4cf5
updated for version 7.1b
2007-05-10 17:24:16 +00:00
Bram Moolenaar
7528dd68a7
updated for version 7.1a
2007-05-06 12:32:12 +00:00
Bram Moolenaar
043545e0f6
updated for version 7.0-130
2006-10-10 16:44:07 +00:00
Bram Moolenaar
eb3593b38b
updated for version 7.0e06
2006-04-22 22:33:57 +00:00
Bram Moolenaar
a93fa7ee78
updated for version 7.0e01
2006-04-17 22:14:47 +00:00
Bram Moolenaar
910f66f90c
updated for version 7.0c10
2006-04-05 20:41:53 +00:00
Bram Moolenaar
7b5f8325ee
updated for version 7.0232
2006-03-23 22:47:08 +00:00
Bram Moolenaar
a203182302
updated for version 7.0217
2006-03-07 22:29:51 +00:00
Bram Moolenaar
362e1a30c6
updated for version 7.0216
2006-03-06 23:29:24 +00:00