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
2a1b474fd8
patch 7.4.940
...
Problem: vt52 terminal codes are not correct.
Solution: Move entries outside of #if. (Random) Adjustments based on
documented codes.
2015-11-24 18:15:51 +01:00
Bram Moolenaar
9a7d58e42e
patch 7.4.939
...
Problem: Memory leak when encountering a syntax error.
Solution: Free the memory. (Dominique Pelle)
2015-11-24 17:23:56 +01:00
Bram Moolenaar
88e484bf1b
patch 7.4.938
...
Problem: X11 and GTK have moure mouse buttons than Vim supports.
Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498 )
2015-11-24 15:38:44 +01:00
Bram Moolenaar
5ad075c073
patch 7.4.937
...
Problem: Segfault reading unitialized memory.
Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes
#497 )
2015-11-24 15:18:32 +01:00
Bram Moolenaar
294a7e55b0
patch 7.4.936
...
Problem: Crash when dragging with the mouse.
Solution: Add safety check for NULL pointer. Check mouse position for valid
value. (Hirohito Higashi)
2015-11-22 19:39:38 +01:00
Bram Moolenaar
6040256d8b
patch 7.4.935
...
Problem: test_utf8 fails on MS-Windows when executed with gvim.
Solution: Use the insert flag on feedkeys() to put the string before the
":" that was already read when checking for available chars.
2015-11-22 15:08:59 +01:00
Bram Moolenaar
7487792ab1
patch 7.4.934
...
Problem: Appveyor also builds on a tag push.
Solution: Add a skip_tags line. (Kenichi Ito, closes #489 )
2015-11-21 17:15:33 +01:00
Bram Moolenaar
e4eda3bc71
patch 7.4.933
...
Problem: Crash when using longest completion match.
Solution: Fix array index.
2015-11-21 16:28:50 +01:00
Bram Moolenaar
8f08dab18d
patch 7.4.932
...
Problem: test_utf8 has confusing dummy command.
Solution: Use a real command instead of a colon.
2015-11-21 14:31:33 +01:00
Bram Moolenaar
cfcd1ddd10
patch 7.4.931
...
Problem: Test 94 fails on some systems.
Solution: Set 'encoding' to utf-8.
2015-11-21 14:24:50 +01:00
Bram Moolenaar
97b0b0ec76
patch 7.4.930
...
Problem: MS-Windows: Most users appear not to like the window border.
Solution: Remove WS_EX_CLIENTEDGE. (Ian Halliday)
2015-11-19 20:23:37 +01:00
Bram Moolenaar
d29c6fea94
patch 7.4.929
...
Problem: "gv" after paste selects one character less if 'selection' is
"exclusive".
Solution: Increment the end position. (Christian Brabandt)
2015-11-19 20:11:54 +01:00
Bram Moolenaar
5d8afebb5b
patch 7.4.928
...
Problem: A clientserver message interrupts handling keys of a mapping.
Solution: Have mch_inchar() send control back to WaitForChar when it is
interrupted by server message. (James Kolb)
2015-11-19 19:55:16 +01:00
Bram Moolenaar
9b1067e038
patch 7.4.927
...
Problem: Ruby crashes when there is a runtime error.
Solution: Use ruby_options() instead of ruby_process_options(). (Damien)
2015-11-19 19:33:15 +01:00
Bram Moolenaar
4f8fa1633c
patch 7.4.926
...
Problem: Completing the longest match doesn't work properly with multi-byte
characters.
Solution: When using multi-byte characters use another way to find the
longest match. (Hirohito Higashi)
2015-11-19 19:00:05 +01:00
Bram Moolenaar
a0ed84a268
patch 7.4.925
...
Problem: User may yank or put using the register being recorded in.
Solution: Add the recording register in the message. (Christian Brabandt,
closes #470 )
2015-11-19 17:56:13 +01:00
Bram Moolenaar
32d03b34ac
patch 7.4.924
...
Problem: DEVELOPER_DIR gets reset by configure.
Solution: Do not reset DEVELOPER_DIR when there is no --with-developer-dir
argument. (Kazuki Sakamoto, closes #482 )
2015-11-19 13:46:48 +01:00
Bram Moolenaar
6a2697ffd7
patch 7.4.923
...
Problem: Prototypes not always generated.
Solution: Change #if to OR with PROTO.
2015-11-19 13:14:30 +01:00
Bram Moolenaar
1c2836e268
patch 7.4.922
...
Problem: Leaking memory with ":helpt {dir-not-exists}".
Solution: Free dirname. (Dominique Pelle)
2015-11-10 21:05:48 +01:00
Bram Moolenaar
cd1c55f706
patch 7.4.921
...
Problem: Missing proto file update. (Randall W. Morris)
Solution: Add the missing line for mch_ishidden.
2015-11-10 20:52:04 +01:00
Bram Moolenaar
a93f975e8b
patch 7.4.920
...
Problem: The rubydll option is not in the options window.
Solution: Add the rubydll option.
2015-11-10 20:45:09 +01:00
Bram Moolenaar
d4ece23e2e
patch 7.4.919
...
Problem: The dll options are not in the options window.
Solution: Add the dll options. And other fixes.
2015-11-10 19:48:14 +01:00
Bram Moolenaar
0796c0625f
patch 7.4.918
...
Problem: A digit in an option name has problems.
Solution: Rename 'python3dll' to 'pythonthreedll'.
2015-11-10 19:41:37 +01:00
Bram Moolenaar
1be2ed6c11
patch 7.4.917
...
Problem: Compiler warning for comparing signed and unsigned.
Solution: Add a type cast.
2015-11-10 19:11:58 +01:00
Bram Moolenaar
8648357841
patch 7.4.916
...
Problem: When running out of memory while copying a dict memory may be
freed twice. (ZyX)
Solution: Do not call the garbage collector when running out of memory.
2015-11-10 19:04:23 +01:00
Bram Moolenaar
174674743d
patch 7.4.915
...
Problem: When removing from 'path' and then adding, a comma may go missing.
(Malcolm Rowe)
Solution: Fix the check for P_ONECOMMA. (closes #471 )
2015-11-10 17:50:24 +01:00
Bram Moolenaar
98b30a473a
patch 7.4.914
...
Problem: New compiler warning: logical-not-parentheses
Solution: Silence the warning.
2015-11-10 15:18:02 +01:00
Bram Moolenaar
72f4cc4a98
patch 7.4.913
...
Problem: No utf-8 support for the hangul input feature.
Solution: Add utf-8 support. (Namsh)
2015-11-10 14:35:18 +01:00
Bram Moolenaar
e01f4f86ce
patch 7.4.912
...
Problem: Wrong indenting for C++ constructor.
Solution: Recognize ::. (Anhong)
2015-11-10 14:06:53 +01:00
Bram Moolenaar
450ca4335e
patch 7.4.911
...
Problem: t_Ce and t_Cs are documented but not supported. (Hirohito Higashi)
Solution: Define the options.
2015-11-10 13:30:39 +01:00
Bram Moolenaar
e7427f4b7e
patch 7.4.910
...
Problem: Compiler complains about type punned pointer.
Solution: Use another way to increment the ref count.
2015-11-10 13:24:20 +01:00
Bram Moolenaar
de59ba33aa
patch 7.4.909
...
Problem: "make install" fails.
Solution: Only try installing desktop files if the destination directory
exists.
2015-11-03 22:03:16 +01:00
Bram Moolenaar
a16f472edf
patch 7.4.908
...
Problem: Build error with MingW compiler. (Cesar Romani)
Solution: Change #if into #ifdef.
2015-11-02 17:35:43 +01:00
Bram Moolenaar
d94464ee29
patch 7.4.907
...
Problem: Libraries for dynamically loading interfaces can only be defined
at compile time.
Solution: Add options to specify the dll names. (Kazuki Sakamoto,
closes #452 )
2015-11-02 15:28:18 +01:00
Bram Moolenaar
8a52ba7918
patch 7.4.906
...
Problem: On MS-Windows the viminfo file is (always) given the hidden
attribute. (raulnac)
Solution: Check the hidden attribute in a different way. (Ken Takata)
2015-11-02 14:45:56 +01:00
Bram Moolenaar
d424747d58
patch 7.4.905
...
Problem: Python interface can produce error "vim.message' object has no
attribute 'isatty'".
Solution: Add dummy isatty(), readable(), etc. (closes #464 )
2015-11-02 13:28:59 +01:00
Bram Moolenaar
6407b3e80d
patch 7.4.904
...
Problem: Vim does not provide .desktop files.
Solution: Include and install .desktop files. (James McCoy, closes #455 )
2015-11-02 12:50:55 +01:00
Bram Moolenaar
7314efd87d
patch 7.4.903
...
Problem: MS-Windows: When 'encoding' differs from the current code page,
expandinig wildcards may cause illegal memory access.
Solution: Allocate a longer buffer. (Ken Takata)
2015-10-31 15:32:52 +01:00
Bram Moolenaar
4c0aac5759
patch 7.4.902
...
Problem: Problems with using the MS-Windows console.
Solution: Revert patches 7.4.851, 7.4.876 and 7.4.886 until we find a better
solution. (suggested by Ken Takata)
2015-10-30 16:46:55 +01:00
Bram Moolenaar
e7d1376b63
patch 7.4.901
...
Problem: When a BufLeave autocommand changes folding in a way it syncs
undo, undo can be corrupted.
Solution: Prevent undo sync. (Jacob Niehus)
2015-10-30 14:23:33 +01:00
Bram Moolenaar
f1a4c98ea6
patch 7.4.900
...
Problem: README file can still be improved
Solution: Add a couple of links. (Christian Brabandt)
2015-10-25 22:42:00 +01:00
Bram Moolenaar
c92399f4ee
patch 7.4.899
...
Problem: README file is not optimal.
Solution: Move buttons, update some text. (closes #460 )
2015-10-25 13:55:00 +01:00
Bram Moolenaar
04dfd51229
patch 7.4.898
...
Problem: The 'fixendofline' option is set on with ":edit".
Solution: Don't set the option when clearing a buffer. (Yasuhiro Matsumoto)
2015-10-13 20:55:50 +02:00
Bram Moolenaar
4e86150ec5
patch 7.4.897
...
Problem: Freeze and crash when there is a sleep in a remote command.
(Karl Yngve Lervåg)
Solution: Remove a message from the queue before dealing with it. (James
Kolb)
2015-10-13 20:21:49 +02:00
Bram Moolenaar
b4f6a46b01
patch 7.4.896
...
Problem: Editing a URL, which netrw should handle, doesn't work.
Solution: Avoid changing slashes to backslashes. (Yasuhiro Matsumoto)
2015-10-13 19:43:17 +02:00
Bram Moolenaar
23d1b62746
patch 7.4.895
...
Problem: Custom command line completion does not work for a command
containing digits.
Solution: Skip over the digits. (suggested by Yasuhiro Matsumoto)
2015-10-13 19:18:04 +02:00
Bram Moolenaar
f59c73da1e
patch 7.4.894
...
Problem: vimrun.exe is picky about the number of spaces before -s.
Solution: Skip all spaces. (Cam Sinclair)
2015-10-13 17:52:59 +02:00
Bram Moolenaar
d1b15dec4d
patch 7.4.893
...
Problem: C indenting is wrong below a "case (foo):" because it is
recognized as a C++ base class construct. Issue #38 .
Solution: Check for the case keyword.
2015-10-13 16:13:39 +02:00
Bram Moolenaar
9d6ca1cc5e
patch 7.4.892
...
Problem: On MS-Windows the iconv DLL may have a different name.
Solution: Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto)
2015-10-13 13:49:09 +02:00