Bram Moolenaar
f4c5fcb3ad
updated for version 7.3.1297
...
Problem: findfile() directory matching does not work when a star follows
text. (Markus Braun)
Solution: Make a wildcard work properly. (Christian Brabandt)
v7.3.1297
2013-07-03 17:14:00 +02:00
Bram Moolenaar
8968a31179
updated for version 7.3.1296
...
Problem: Only MS-Windows limits the GUI window size to what fits on the
monitor.
Solution: Limit the size for all systems. (Daniel Harding)
v7.3.1296
2013-07-03 16:58:44 +02:00
Bram Moolenaar
f4e1143697
updated for version 7.3.1295
...
Problem: glob() and globpath() do not handle escaped special characters
properly.
Solution: Handle escaped characters differently. (Adnan Zafar)
v7.3.1295
2013-07-03 16:53:03 +02:00
Bram Moolenaar
a87aa8061c
updated for version 7.3.1294
...
Problem: ":diffoff" resets options.
Solution: Save and restore option values. (Christian Brabandt)
v7.3.1294
2013-07-03 15:47:03 +02:00
Bram Moolenaar
caf2dffd51
updated for version 7.3.1293
...
Problem: Put in empty buffer cannot be undone.
Solution: Save one more line for undo. (Ozaki)
v7.3.1293
2013-07-03 14:19:54 +02:00
Bram Moolenaar
5e6d5ca16c
updated for version 7.3.1292
...
Problem: Possibly using invalid pointer when searcing for window. (Raichoo)
Solution: Use "firstwin" instead of "tp_firstwin" for current tab.
v7.3.1292
2013-07-03 14:01:56 +02:00
Bram Moolenaar
e1fc4e2f0f
updated for version 7.3.1291
...
Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck)
Solution: Initialize the variables.
v7.3.1291
2013-07-03 13:29:58 +02:00
Bram Moolenaar
79f7e1475a
updated for version 7.3.1290
...
Problem: CTRL-R = in Insert mode changes the start of the insert position.
(Ingo Karkat)
Solution: Only break undo, don't start a new insert.
v7.3.1290
2013-07-03 13:16:23 +02:00
Bram Moolenaar
f9da680a0b
updated for version 7.3.1289
...
Problem: Get GLIB warning when removing a menu item.
Solution: Reference menu-id and also call gtk_container_remove(). (Ivan
Krasilnikov)
v7.3.1289
2013-07-03 13:04:27 +02:00
Bram Moolenaar
2951b77e50
updated for version 7.3.1288
...
Problem: The first ":echo 'hello'" command output doesn't show. Mapping
for <S-F3> gets triggered during startup.
Solution: Add debugging code for the termresponse. When receiving the "Co"
entry and when setting 'ambiwidth' redraw right away if possible.
Add redraw_asap(). Don't set 'ambiwidth' if it already had the
right value. Do the 'ambiwidth' check in the second row to avoid
confusion with <S-F3>.
v7.3.1288
2013-07-03 12:45:31 +02:00
Bram Moolenaar
4100937474
updated for version 7.3.1287
...
Problem: Python SystemExit exception is not handled properly.
Solution: Catch the exception and give an error. (Yasuhiro Matsumoto, Ken
Takata)
v7.3.1287
2013-07-01 22:03:04 +02:00
Bram Moolenaar
c33916a6e0
updated for version 7.3.1286
...
Problem: Check for screen size missing for Athena and Motif.
Solution: Add call to limit_screen_size().
v7.3.1286
2013-07-01 21:43:08 +02:00
Bram Moolenaar
f5901aa195
updated for version 7.3.1285
...
Problem: No tests for picking a window when selecting an entry in a
location list. Not picking the right window sometimes.
Solution: Add test 96. Set usable_win appropriately. (Lech Lorens)
v7.3.1285
2013-07-01 21:25:25 +02:00
Bram Moolenaar
2982e70243
updated for version 7.3.1284
...
Problem: Compiler warnings in MS-Windows clipboard handling.
Solution: Add type casts. (Ken Takata)
v7.3.1284
2013-07-01 21:08:48 +02:00
Bram Moolenaar
72fe56f298
updated for version 7.3.1283
...
Problem: Test 71 fails on MS-Windows.
Solution: Put the binary data in a separate file. (Ken Takata)
v7.3.1283
2013-07-01 21:00:35 +02:00
Bram Moolenaar
bd65c46478
updated for version 7.3.1282
...
Problem: 'cursorline' not drawn in any other window. (Charles Campbell)
Solution: Do draw the cursor line in other windows.
v7.3.1282
2013-07-01 20:18:33 +02:00
Bram Moolenaar
0e710d603e
updated for version 7.3.1281
...
Problem: When 'ttymouse' is set to "xterm2" clicking in column 123 moves
the cursor to column 96. (Kevin Goodsell)
Solution: Decode KE_CSI.
v7.3.1281
2013-07-01 20:06:19 +02:00
Bram Moolenaar
d05bf560ac
updated for version 7.3.1280
...
Problem: Reading memory already freed since patch 7.3.1247. (Simon
Ruderich, Dominique Pelle)
Solution: Copy submatches before reallocating the state list.
v7.3.1280
2013-06-30 23:24:08 +02:00
Bram Moolenaar
673b9a3cae
updated for version 7.3.1279
...
Problem: Compiler warning for variable uninitialized. (Tony Mechelynck)
Solution: Add an init.
v7.3.1279
2013-06-30 22:43:27 +02:00
Bram Moolenaar
e057d40d96
updated for version 7.3.1278
...
Problem: When someone sets the screen size to a huge value with "stty" Vim
runs out of memory before reducing the size.
Solution: Limit Rows and Columns in more places.
v7.3.1278
2013-06-30 17:51:51 +02:00
Bram Moolenaar
5a4d51e692
updated for version 7.3.1277
...
Problem: In diff mode 'cursorline' also draws in the non-active window.
When 'nu' and 'sbr' are set the 'sbr' string is not underlined.
Solution: Only draw the cursor line in the current window. Combine the
'cursorline' and other highlighting attributes. (Christian
Brabandt)
v7.3.1277
2013-06-30 17:24:16 +02:00
Bram Moolenaar
85e932f2ca
updated for version 7.3.1276
...
Problem: When using a cscope connection resizing the window may send
SIGWINCH to cscope and it quits.
Solution: Call setpgid(0, 0) in the child process. (Narendran Gopalakrishnan)
v7.3.1276
2013-06-30 15:01:22 +02:00
Bram Moolenaar
e78495de7e
updated for version 7.3.1275
...
Problem: "gn" does not work when the match is a single character.
Solution: Fix it, add a test. (Christian Brabandt)
v7.3.1275
2013-06-30 14:46:53 +02:00
Bram Moolenaar
2486285546
updated for version 7.3.1274
...
Problem: When selecting an entry from a location list it may pick an
arbitrary window or open a new one.
Solution: Prefer using a window related to the location list. (Lech Lorens)
v7.3.1274
2013-06-30 13:57:45 +02:00
Bram Moolenaar
730d2c0747
updated for version 7.3.1273
...
Problem: When copying a location list the index might be wrong.
Solution: Set the index to one when using the first entry. (Lech Lorens)
v7.3.1273
2013-06-30 13:33:58 +02:00
Bram Moolenaar
55480dccf4
updated for version 7.3.1272
...
Problem: Crash when editing Ruby file. (Aliaksandr Rahalevich)
Solution: Reallocate the state list when necessary.
v7.3.1272
2013-06-30 13:17:24 +02:00
Bram Moolenaar
a4c8dcbdae
updated for version 7.3.1271
...
Problem: Command line completion does not work.
Solution: Move setting xp_line down. (Daniel Thau)
v7.3.1271
2013-06-30 12:21:24 +02:00
Bram Moolenaar
14b6945e27
Updated runtime files.
2013-06-29 23:05:20 +02:00
Bram Moolenaar
10315b1201
updated for version 7.3.1270
...
Problem: Using "Vp" in an empty buffer can't be undone. (Hauke Petersen)
Solution: Save one line in an empty buffer. (Christian Brabandt)
v7.3.1270
2013-06-29 17:19:28 +02:00
Bram Moolenaar
6b487147ac
updated for version 7.3.1269
...
Problem: Insert completion keeps entry selected even though the list has
changed. (Olivier Teuliere)
Solution: Reset compl_shown_match and compl_curr_match. (Christian Brabandt)
v7.3.1269
2013-06-29 16:21:58 +02:00
Bram Moolenaar
39efa89afb
updated for version 7.3.1268
...
Problem: ACL support doesn't work when when compiled with MingW.
Solution: Support ACL on MingW. (Ken Takata)
v7.3.1268
2013-06-29 15:40:04 +02:00
Bram Moolenaar
2751592119
updated for version 7.3.1267
...
Problem: MS-Windows ACL support doesn't work well.
Solution: Implement more ACL support. (Ken Takata)
v7.3.1267
2013-06-29 15:36:26 +02:00
Bram Moolenaar
a8e3580be6
updated for version 7.3.1266
...
Problem: QNX: GUI fails to start.
Solution: Remove the QNX-specific #ifdef. (Sean Boudreau)
v7.3.1266
2013-06-29 15:19:21 +02:00
Bram Moolenaar
630a730f9b
updated for version 7.3.1265
...
Problem: Accepting "Vim:" for a modeline causes errors too often.
Solution: Require "Vim:" to be followed by "set".
v7.3.1265
2013-06-29 15:07:22 +02:00
Bram Moolenaar
f3fe392760
updated for version 7.3.1264
...
Problem: Missing m_nowait.
Solution: Include missing part of the patch.
v7.3.1264
2013-06-29 14:47:22 +02:00
Bram Moolenaar
4a46070365
updated for version 7.3.1263
...
Problem: Typo in short option name.
Solution: Change "imse" to "imsf".
v7.3.1263
2013-06-29 14:42:26 +02:00
Bram Moolenaar
fe17e7640d
updated for version 7.3.1262
...
Problem: Crash and compilation warnings with Cygwin.
Solution: Check return value of XmbTextListToTextProperty(). Add type casts.
Adjust #ifdefs. (Lech Lorens)
v7.3.1262
2013-06-29 14:17:02 +02:00
Bram Moolenaar
72179e1bd0
updated for version 7.3.1261
...
Problem: A buffer-local language mapping from a keymap stops a global
insert mode mapping from working. (Ron Aaron)
Solution: Do not wait for more characters to be typed only when the mapping
was defined with <nowait>.
v7.3.1261
2013-06-29 13:58:31 +02:00
Bram Moolenaar
b751546636
updated for version 7.3.1260
...
Problem: User completion does not get the whole command line in the command
line window.
Solution: Pass on the whole command line. (Daniel Thau)
v7.3.1260
2013-06-29 12:58:33 +02:00
Bram Moolenaar
560c52d32b
updated for version 7.3.1259
...
Problem: No test for patch 7.3.1258
Solution: Add a test entry.
v7.3.1259
2013-06-29 12:10:26 +02:00
Bram Moolenaar
4d9ae21a34
updated for version 7.3.1258
...
Problem: Using submatch() may crash Vim. (Ingo Karkat)
Solution: Restore the number of subexpressions used.
v7.3.1258
2013-06-28 23:04:42 +02:00
Bram Moolenaar
e3a0b53c2e
updated for version 7.3.1257
...
Problem: With GNU gettext() ":lang de_DE.utf8" does not always result in
German messages.
Solution: Clear the $LANGUAGE environment variable.
v7.3.1257
2013-06-28 20:36:30 +02:00
Bram Moolenaar
f0327f67c7
updated for version 7.3.1256
...
Problem: Can't build without eval or autocmd feature.
Solution: Add #ifdefs.
v7.3.1256
2013-06-28 20:16:55 +02:00
Bram Moolenaar
22dbc77ef1
Update runtime files. Remove duplicate tags in help.
2013-06-28 18:44:48 +02:00
Bram Moolenaar
6470de83f2
updated for version 7.3.1255
...
Problem: Clang warnings when building with Athena.
Solution: Add type casts. (Dominique Pelle)
v7.3.1255
2013-06-27 22:36:03 +02:00
Bram Moolenaar
a5f5c8be8f
updated for version 7.3.1254
...
Problem: Can't build without the multi-lang feature. (John Marriott)
Solution: Add #ifdef.
v7.3.1254
2013-06-27 22:29:38 +02:00
Bram Moolenaar
5737ca2350
updated for version 7.3.1253
...
Problem: Still undo problem after using CTRL-R = setline(). (Hirohito
Higashi)
Solution: Set the ins_need_undo flag.
v7.3.1253
2013-06-27 22:21:24 +02:00
Bram Moolenaar
c9dcb42704
updated for version 7.3.1252
...
Problem: Gvim does not find the toolbar bitmap files in ~/vimfiles/bitmaps
if the corresponding menu command contains additional characters
like the shortcut marker '&' or if you use a non-english locale.
Solution: Use menu->en_dname or menu->dname. (Martin Gieseking)
v7.3.1252
2013-06-27 22:02:02 +02:00
Bram Moolenaar
9b846cb8ac
updated for version 7.3.1251
...
Problem: Test 61 messes up viminfo.
Solution: Specify a separate viminfo file.
v7.3.1251
2013-06-26 21:56:36 +02:00
Bram Moolenaar
877aa00811
updated for version 7.3.1250
...
Problem: Python tests fail on MS-Windows.
Solution: Change backslashes to slashes. (Taro Muraoka)
v7.3.1250
2013-06-26 21:49:51 +02:00