Bram Moolenaar
1ee36d6ff5
patch 8.1.1244: no tests for CTRL-mouse-click
...
Problem: No tests for CTRL-mouse-click.
Solution: Add a few tests. (Dominique Pelle, closes #4323 )
v8.1.1244
2019-05-01 23:13:56 +02:00
Bram Moolenaar
26f0cb145a
patch 8.1.1243: compiler warnings for incomplete switch statement
...
Problem: Compiler warnings for incomplete switch statement. (Tony
Mechelynck)
Solution: Add ADDR_QUICKFIX to the list.
v8.1.1243
2019-05-01 21:43:42 +02:00
Bram Moolenaar
0fef0aeb1c
patch 8.1.1242: no cmdline redraw when tabpages have different 'cmdheight'
...
Problem: No cmdline redraw when tabpages have different 'cmdheight'.
Solution: redraw the command line when 'cmdheight' changes when switching
tabpages. (closes #4321 )
v8.1.1242
2019-05-01 20:30:40 +02:00
Bram Moolenaar
b731689e85
patch 8.1.1241: Ex command info contains confusing information
...
Problem: Ex command info contains confusing information.
Solution: When using the NOTADR flag use ADDR_OTHER for the address type.
Cleanup code using NOTADR. Check for errors in
create_cmdidxs.vim. Adjust Makefile to see the errors.
v8.1.1241
2019-05-01 18:08:42 +02:00
Bram Moolenaar
d96dbd6f95
patch 8.1.1240: runtime desktop files are overwritten by build
...
Problem: Runtime desktop files are overwritten by build. (Tony Mechelynck)
Solution: Instead of copying the files find them with "make install".
v8.1.1240
2019-04-30 21:27:34 +02:00
Bram Moolenaar
a9dd2d3c75
patch 8.1.1239: key with byte sequence containing CSI does not work
...
Problem: Key with byte sequence containing CSI does not work.
Solution: Do not recognize CSI as special unless the GUI is active. (Ken
Takata, closes #4318 )
v8.1.1239
2019-04-29 21:58:41 +02:00
Bram Moolenaar
a0e67fc166
patch 8.1.1238: MS-Windows: compiler warning for sprintf() format
...
Problem: MS-Windows: compiler warning for sprintf() format.
Solution: Change %d to %ld. (Ken Takata)
v8.1.1238
2019-04-29 21:46:26 +02:00
Bram Moolenaar
52111f8231
patch 8.1.1237: error for using "compl", reserved word in C++
...
Problem: Error for using "compl", reserved word in C++.
Solution: Rename to "complp". (suggestion by Ken Takata)
v8.1.1237
2019-04-29 21:30:45 +02:00
Bram Moolenaar
fe368edcc0
patch 8.1.1236: sjiscorr.c not found in shadow directory
...
Problem: sjiscorr.c not found in shadow directory. (Tony Mechelynck)
Solution: Link po/*.c files with "make shadow".
v8.1.1236
2019-04-29 20:30:54 +02:00
Bram Moolenaar
602abeb20f
Update .gitignore
2019-04-29 20:26:05 +02:00
Bram Moolenaar
c0af78fa08
patch 8.1.1235: compiler warnings for using STRLEN() value
...
Problem: Compiler warnings for using STRLEN() value.
Solution: Cast to int. (Christian Brabandt, Mike Williams)
v8.1.1235
2019-04-29 19:47:22 +02:00
Bram Moolenaar
701df4eb64
patch 8.1.1234: swap file test fails on MS-Windows
...
Problem: Swap file test fails on MS-Windows.
Solution: Only compare the tail of the file names.
v8.1.1234
2019-04-28 23:07:18 +02:00
Bram Moolenaar
c779c674ac
patch 8.1.1233: cannot build tiny version
...
Problem: Cannot build tiny version.
Solution: Remove #ifdef for verb_msg().
v8.1.1233
2019-04-28 22:53:41 +02:00
Bram Moolenaar
1b243eafb0
patch 8.1.1232: can't build on MS-Windows
...
Problem: Can't build on MS-Windows.
Solution: Define process_still_running.
v8.1.1232
2019-04-28 22:50:40 +02:00
Bram Moolenaar
67cf86bfff
patch 8.1.1231: asking about existing swap file unnecessarily
...
Problem: Asking about existing swap file unnecessarily.
Solution: When it is safe, delete the swap file. Remove
HAS_SWAP_EXISTS_ACTION, it is always defined. (closes #1237 )
v8.1.1231
2019-04-28 22:25:38 +02:00
Bram Moolenaar
afde13b62b
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
...
Problem: A lot of code is shared between vim.exe and gvim.exe.
Solution: Optionally put the shared code in vim.dll. (Ken Takata,
closes #4287 )
v8.1.1230
2019-04-28 19:46:49 +02:00
Bram Moolenaar
ab4cece605
patch 8.1.1229: warning for posix_openpt() not declared
...
Problem: Warning for posix_openpt() not declared. (Tony Mechelynck)
Solution: Add declaration.
v8.1.1229
2019-04-28 18:40:03 +02:00
Bram Moolenaar
45e18cbdc4
patch 8.1.1228: not possible to process tags with a function
...
Problem: Not possible to process tags with a function.
Solution: Add tagfunc() (Christian Brabandt, Andy Massimino, closes #4010 )
v8.1.1228
2019-04-28 18:05:35 +02:00
Bram Moolenaar
7a9df9dd00
patch 8.1.1227: duplicate entries in the generate .desktop files
...
Problem: Duplicate entries in the generate .desktop files. (Ralf Schandl)
Solution: Remove translated entries from the .in files. (closes #4313 )
v8.1.1227
2019-04-28 16:08:30 +02:00
Bram Moolenaar
6c60f47fb9
patch 8.1.1226: {not in Vi} remarks get in the way of useful help text
...
Problem: {not in Vi} remarks get in the way of useful help text.
Solution: Make a list of all Vi options, instead of mentioning what Vi does
not have. Update the help text for options.
v8.1.1226
2019-04-28 16:00:35 +02:00
Bram Moolenaar
1e44968780
patch 8.1.1225: cannot create a pty to use with :terminal on FreeBSD
...
Problem: Cannot create a pty to use with :terminal on FreeBSD.
Solution: Add support for posix_openpt(). (Ozaki Kiichi, closes #4306 ,
closes #4289 )
v8.1.1225
2019-04-28 14:59:59 +02:00
Bram Moolenaar
f720d0a77e
patch 8.1.1224: MS-Windows: cannot specify font weight
...
Problem: MS-Windows: cannot specify font weight.
Solution: Add the "W" option to 'guifont'. (closes #4309 ) Move GUI font
explanation out of options.txt.
v8.1.1224
2019-04-28 14:02:47 +02:00
Bram Moolenaar
564344ace9
patch 8.1.1223: middle mouse click test fails without a clipboard
...
Problem: Middle mouse click test fails without a clipboard.
Solution: Check if the clipboard can be used. (Dominique Pelle, Christian
Brabandt) Also use WorkingClipboard() instead of checking for the
"clipboard" feature.
v8.1.1223
2019-04-28 13:00:12 +02:00
Bram Moolenaar
dcaa54dded
patch 8.1.1222: build still fails on MS-Windows
...
Problem: Build still fails on MS-Windows.
Solution: Move another declaration to start of block.
v8.1.1222
2019-04-27 22:45:00 +02:00
Bram Moolenaar
ad6dc49a75
patch 8.1.1221: filtering does not work when listing marks
...
Problem: Filtering does not work when listing marks.
Solution: Implement filtering marks. (Marcin Szamotulski, closes #3895 )
v8.1.1221
2019-04-27 22:40:08 +02:00
Bram Moolenaar
0ee1bdff7d
patch 8.1.1220: build fails on MS-Windows
...
Problem: Build fails on MS-Windows.
Solution: Move declaration to start of block.
v8.1.1220
2019-04-27 22:38:30 +02:00
Bram Moolenaar
6ee9658774
patch 8.1.1219: not checking for NULL return from alloc()
...
Problem: Not checking for NULL return from alloc().
Solution: Add checks. (Martin Kunev, closes #4303 , closes #4174 )
v8.1.1219
2019-04-27 22:06:37 +02:00
Bram Moolenaar
00aa069db8
patch 8.1.1218: cannot set a directory for a tab page
...
Problem: Cannot set a directory for a tab page.
Solution: Add the tab-local directory. (Yegappan Lakshmanan, closes #4212 )
v8.1.1218
2019-04-27 20:37:57 +02:00
Bram Moolenaar
2155a6abaa
patch 8.1.1217: MS-Windows: no space reserved for font quality name
...
Problem: MS-Windows: no space reserved for font quality name.
Solution: Add quality_name length if present. (Ken Takata, closes #4311 )
v8.1.1217
2019-04-27 19:15:45 +02:00
Bram Moolenaar
c1b8160b44
patch 8.1.1216: mouse middle click is not tested
...
Problem: Mouse middle click is not tested.
Solution: Add a test. (Dominique Pelle, closes #4310 )
v8.1.1216
2019-04-27 19:11:35 +02:00
Bram Moolenaar
49543fbced
patch 8.1.1215: "make clean" does not remove generated src/po files
...
Problem: "make clean" does not remove generated src/po files.
Solution: Remove the files for "make clean". (Christian Brabandt)
v8.1.1215
2019-04-27 18:32:31 +02:00
Bram Moolenaar
c6b37db1ba
patch 8.1.1214: old style tests
...
Problem: Old style tests.
Solution: Move tests from test14 to new style test files. (Yegappan
Lakshmanan, closes #4308 )
v8.1.1214
2019-04-27 18:00:34 +02:00
Bram Moolenaar
e13a3901ca
patch 8.1.1213: "make clean" in top dir does not cleanup indent test output
...
Problem: "make clean" in top dir does not cleanup indent test output.
Solution: Clean the indent test output. Do not rely on the vim executable
for that. (closes #4307 )
v8.1.1213
2019-04-27 17:57:31 +02:00
Bram Moolenaar
520e245237
patch 8.1.1212: signal PWR is not tested
...
Problem: Signal PWR is not tested.
Solution: Test that PWR updates the swap file. (Dominique Pelle,
closes #4312 )
v8.1.1212
2019-04-27 17:32:40 +02:00
Bram Moolenaar
e61e548dd6
patch 8.1.1211: not all user command code is tested
...
Problem: Not all user command code is tested.
Solution: Add more tests.
v8.1.1211
2019-04-27 15:05:12 +02:00
Bram Moolenaar
ac9fb18020
patch 8.1.1210: support for user commands is spread out
...
Problem: Support for user commands is spread out. No good reason to make
user commands optional.
Solution: Move user command support to usercmd.c. Always enable the
user_commands feature.
v8.1.1210
2019-04-27 13:04:13 +02:00
Bram Moolenaar
5431589d25
patch 8.1.1209: clever compiler warns for buffer being too small
...
Problem: Clever compiler warns for buffer being too small.
Solution: Make the buffer bigger (even though it's not really needed).
v8.1.1209
2019-04-26 22:33:49 +02:00
Bram Moolenaar
c8cc0ad477
patch 8.1.1208: links to repository use wrong file name
...
Problem: Links to repository use wrong file name.
Solution: Swap the file names. (Nahuel Ourthe, closes #4304 )
v8.1.1208
2019-04-26 21:31:38 +02:00
Bram Moolenaar
1f3601e92e
patch 8.1.1207: some compilers give warning messages
...
Problem: Some compilers give warning messages.
Solution: Initialize variables, change printf() argument. (Christian
Brabandt, closes #4305 )
v8.1.1207
2019-04-26 20:33:00 +02:00
Bram Moolenaar
d1f90bbcab
patch 8.1.1206: user command parsing and listing not properly tested
...
Problem: User command parsing and listing not properly tested.
Solution: Add more tests. (Dominique Pelle, closes #4296 )
v8.1.1206
2019-04-25 22:42:07 +02:00
Bram Moolenaar
a68e595909
patch 8.1.1205: a BufReadPre autocommand may cause the cursor to move
...
Problem: A BufReadPre autocommand may cause the cursor to move.
Solution: Restore the cursor position after executing the autocommand,
unless the autocommand moved it. (Christian Brabandt,
closes #4302 , closes #4294 )
v8.1.1205
2019-04-25 22:22:01 +02:00
Bram Moolenaar
a561a41a70
patch 8.1.1204: output of :command with address completion is not nice
...
Problem: Output of :command with address completion is not nice.
Solution: Shorten the address completion names.
v8.1.1204
2019-04-25 21:27:58 +02:00
Bram Moolenaar
69ea587289
patch 8.1.1203: some autocmd tests are old style
...
Problem: Some autocmd tests are old style.
Solution: Turn the tests into new style. (Yegappan Lakshmanan, closes #4295 )
v8.1.1203
2019-04-25 20:29:00 +02:00
Bram Moolenaar
c2d09c9f2c
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUG
...
Problem: Always get regexp debugging logs when building with -DDEBUG.
Solution: By default do not create regexp debugging logs. (Ken Takata)
v8.1.1202
2019-04-25 20:07:51 +02:00
Bram Moolenaar
725310d89e
patch 8.1.1201: output of :command is hard to read
...
Problem: Output of :command is hard to read.
Solution: Make some columns wider, some narrower. Truncate the command when
listing all.
v8.1.1201
2019-04-24 23:08:23 +02:00
Bram Moolenaar
31fc39e47b
patch 8.1.1200: old style comments in debugger source
...
Problem: Old style comments in debugger source.
Solution: Use new style comments. (Yegappan Lakshmanan, closes #4286 )
v8.1.1200
2019-04-23 18:39:49 +02:00
Bram Moolenaar
8485be4e49
patch 8.1.1199: no test for :abclear
...
Problem: No test for :abclear.
Solution: Add a test. (Dominique Pelle, closes #4292 )
v8.1.1199
2019-04-23 16:36:05 +02:00
Bram Moolenaar
958eabe5e5
patch 8.1.1198: bracketed paste may remain active after Vim exists
...
Problem: Bracketed paste may remain active after Vim exists, because the
terminal emulater restores the setting.
Solution: Set/reset bracketed paste mode before setting the terminal mode.
(closes #3579 )
v8.1.1198
2019-04-21 17:22:33 +02:00
Bram Moolenaar
c75e812623
patch 8.1.1197: when starting with multiple tabs file messages is confusing
...
Problem: When starting with multiple tabs file messages is confusing.
Solution: Set 'shortmess' when loading the other tabs. (Christian Brabandt)
v8.1.1197
2019-04-21 15:55:10 +02:00
Bram Moolenaar
7bde95a461
patch 8.1.1196: parallel build may fail
...
Problem: Parallel build may fail.
Solution: Update dependencies.
v8.1.1196
2019-04-21 15:22:39 +02:00