Bram Moolenaar
|
790500a8e6
|
patch 7.4.1563
Problem: Partial test fails on windows.
Solution: Return 1 or -1 from compare function.
|
2016-03-15 11:05:45 +01:00 |
|
Bram Moolenaar
|
9eb3bb2930
|
patch 7.4.1562
Problem: ":helptags ALL" crashes. (Lcd)
Solution: Don't free twice.
|
2016-03-14 23:45:35 +01:00 |
|
Bram Moolenaar
|
39afdea203
|
patch 7.4.1561
Problem: Missing update to proto file.
Solution: Change the proto file.
|
2016-03-14 23:27:29 +01:00 |
|
Bram Moolenaar
|
d6c2f05260
|
patch 7.4.1560
Problem: Dict options with a dash are more difficult to use.
Solution: Use an underscore, so that dict.err_io can be used.
|
2016-03-14 23:22:59 +01:00 |
|
Bram Moolenaar
|
1735bc988c
|
patch 7.4.1559
Problem: Passing cookie to a callback is clumsy.
Solution: Change function() to take arguments and return a partial.
|
2016-03-14 23:05:14 +01:00 |
|
Bram Moolenaar
|
9cdf86b86f
|
patch 7.4.1558
Problem: It is not easy to find out what windows display a buffer.
Solution: Add win_findbuf().
|
2016-03-13 19:04:51 +01:00 |
|
Bram Moolenaar
|
86edef664e
|
patch 7.4.1557
Problem: Windows cannot be identified.
Solution: Add a unique window number to each window and functions to use it.
|
2016-03-13 18:07:30 +01:00 |
|
Bram Moolenaar
|
a3442cb505
|
patch 7.4.1556
Problem: "make install" changes the help tags file, causing it to differ
from the repository.
Solution: Move it aside and restore it.
|
2016-03-13 14:34:12 +01:00 |
|
Bram Moolenaar
|
fff341eb59
|
patch 7.4.1555
Problem: List of test targets incomplete.
Solution: Add newly added tests.
|
2016-03-13 13:27:36 +01:00 |
|
Bram Moolenaar
|
52f9c19015
|
patch 7.4.1554
Problem: Completion for :colorscheme does not use 'packpath'.
Solution: Make it work, add a test. (Hirohito Higashi)
|
2016-03-13 13:24:45 +01:00 |
|
Bram Moolenaar
|
8dcf259d90
|
patch 7.4.1553
Problem: ":runtime" does not use 'packpath'.
Solution: Add "what" argument.
|
2016-03-12 22:47:14 +01:00 |
|
Bram Moolenaar
|
7f8989dd8a
|
patch 7.4.1552
Problem: ":colorscheme" does not use 'packpath'.
Solution: Also use in "start" and "opt" directories in 'packpath'.
|
2016-03-12 22:11:39 +01:00 |
|
Bram Moolenaar
|
6bef5306e4
|
patch 7.4.1551
Problem: Cannot generate help tags in all doc directories.
Solution: Make ":helptags ALL" work.
|
2016-03-12 21:28:26 +01:00 |
|
Bram Moolenaar
|
2d8f56acb3
|
patch 7.4.1550
Problem: Cannot load packages early.
Solution: Add the ":packloadall" command.
|
2016-03-12 20:34:27 +01:00 |
|
Bram Moolenaar
|
c835293d54
|
patch 7.4.1549
Problem: Test for syntax attributes fails in Win32 GUI.
Solution: Use an existing font name.
|
2016-03-12 20:15:21 +01:00 |
|
Bram Moolenaar
|
5a2800fd14
|
patch 7.4.1548
Problem: Two tests fail.
Solution: Adjust the expected error number. Remove check for type.
|
2016-03-12 19:33:49 +01:00 |
|
Bram Moolenaar
|
385111bd86
|
patch 7.4.1547
Problem: Getting a cterm highlight attribute that is not set results in the
string "-1".
Solution: Return an empty string. (Taro Muraoka)
|
2016-03-12 19:23:00 +01:00 |
|
Bram Moolenaar
|
f6f32c38bf
|
patch 7.4.1546
Problem: Sticky type checking is more annoying than useful.
Solution: Remove the error for changing a variable type.
|
2016-03-12 19:03:59 +01:00 |
|
Bram Moolenaar
|
b4ebf9ae3b
|
patch 7.4.1545
Problem: GTK3: horizontal cursor movement in Visual selection not good.
Solution: Make it work better. (Kazunobu Kuriyama)
|
2016-03-12 16:28:18 +01:00 |
|
Bram Moolenaar
|
583c1f14a4
|
patch 7.4.1544
Problem: On Win32 escaping the command does not work properly.
Solution: Reset 'ssl' when escaping the command. (Yasuhiro Matsumoto)
|
2016-03-12 15:58:34 +01:00 |
|
Bram Moolenaar
|
5a6ec52392
|
patch 7.4.1543
Problem: Channel log methods are not tested.
Solution: Log job activity and check it.
|
2016-03-12 15:51:44 +01:00 |
|
Bram Moolenaar
|
1adda3403d
|
patch 7.4.1542
Problem: job_start() with a list is not tested.
Solution: Call job_start() with a list.
|
2016-03-12 15:39:40 +01:00 |
|
Bram Moolenaar
|
8950a563b3
|
patch 7.4.1541
Problem: Missing job_info().
Solution: Implement it.
|
2016-03-12 15:22:55 +01:00 |
|
Bram Moolenaar
|
ac42afd10b
|
patch 7.4.1540
Problem: Channel test is a bit flaky.
Solution: Increase expected wait time.
|
2016-03-12 13:48:49 +01:00 |
|
Bram Moolenaar
|
8e2c942ce4
|
patch 7.4.1539
Problem: Too much code in eval.c.
Solution: Move job and channel code to channel.c.
|
2016-03-12 13:43:33 +01:00 |
|
Bram Moolenaar
|
4fc563b397
|
patch 7.4.1538
Problem: Selection with the mouse does not work in command line mode.
Solution: Use cairo functions. (Kazunobu Kuriyama)
|
2016-03-12 12:40:58 +01:00 |
|
Bram Moolenaar
|
509ce2a558
|
patch 7.4.1537
Problem: Too many feature flags for pipes, jobs and channels.
Solution: Only use FEAT_JOB_CHANNEL.
|
2016-03-11 22:52:15 +01:00 |
|
Bram Moolenaar
|
de27989157
|
patch 7.4.1536
Problem: Cannot re-use a channel for another job.
Solution: Add the "channel" option to job_start().
|
2016-03-11 22:19:44 +01:00 |
|
Bram Moolenaar
|
9e496854a9
|
patch 7.4.1535
Problem: The feedkeys test has a one second delay.
Solution: Avoid need_wait_return() to delay. (Hirohito Higashi)
|
2016-03-11 19:31:47 +01:00 |
|
Bram Moolenaar
|
846cdb2275
|
patch 7.4.1534
Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama)
Solution: Rename it.
|
2016-03-11 18:52:22 +01:00 |
|
Bram Moolenaar
|
74c5bbf134
|
patch 7.4.1533
Problem: Using feedkeys() with an empty string disregards 'x' option.
Solution: Make 'x' work with an empty string. (Thinca)
|
2016-03-10 22:19:53 +01:00 |
|
Bram Moolenaar
|
7bffaa9f9b
|
patch 7.4.1532
Problem: MS-Windows channel leaks file descriptor.
Solution: Use CreateFile with the right options. (Yasuhiro Matsumoto)
|
2016-03-10 21:46:03 +01:00 |
|
Bram Moolenaar
|
40e8cb292c
|
patch 7.4.1531
Problem: Compiler warning for unitinialized variable. (Dominique Pelle)
Solution: Always give the variable a value.
|
2016-03-10 21:10:58 +01:00 |
|
Bram Moolenaar
|
75578a388d
|
patch 7.4.1530
Problem: MS-Windows job_start() closes wrong handle.
Solution: Close hThread on the process info. (Ken Takata)
|
2016-03-10 16:33:31 +01:00 |
|
Bram Moolenaar
|
29fd03878c
|
patch 7.4.1529
Problem: Specifying buffer number for channel not implemented yet.
Solution: Implement passing a buffer number.
|
2016-03-09 23:14:07 +01:00 |
|
Bram Moolenaar
|
af1a0e371e
|
patch 7.4.1528
Problem: Using "ever" for packages is confusing.
Solution: Use "start", as it's related to startup.
|
2016-03-09 22:19:26 +01:00 |
|
Bram Moolenaar
|
562ca71428
|
patch 7.4.1527
Problem: Channel test is flaky on MS-Windows.
Solution: Limit the select() timeout to 50 msec and try with a new socket if
it fails.
|
2016-03-09 21:50:05 +01:00 |
|
Bram Moolenaar
|
d5d3d307dd
|
patch 7.4.1526
Problem: Writing to file and not connecting a channel doesn't work for
MS-Windows.
Solution: Make it work. (Yasuhiro Matsumoto)
|
2016-03-09 20:54:51 +01:00 |
|
Bram Moolenaar
|
beb003b303
|
patch 7.4.1525
Problem: On a high resolution screen the toolbar icons are too small.
Solution: Add "huge" and "giant" to 'toolbariconsize'. (Brian Gix)
|
2016-03-08 22:47:17 +01:00 |
|
Bram Moolenaar
|
045a284a83
|
patch 7.4.1524
Problem: Channel test fails on BSD.
Solution: Break out of the loop when connect() succeeds. (Ozaki Kiichi)
|
2016-03-08 22:33:07 +01:00 |
|
Bram Moolenaar
|
0622732b32
|
patch 7.4.1523
Problem: Writing channel to a file fails on MS-Windows.
Solution: Disable it for now.
|
2016-03-08 20:58:29 +01:00 |
|
Bram Moolenaar
|
6ff02c9651
|
patch 7.4.1522
Problem: Cannot write channel err to a buffer.
Solution: Implement it.
|
2016-03-08 20:12:44 +01:00 |
|
Bram Moolenaar
|
8322e1f06e
|
patch 7.4.1521
Problem: File permission test fails on MS-Windows.
Solution: Expect a different permission.
|
2016-03-08 19:20:04 +01:00 |
|
Bram Moolenaar
|
d9d473ea12
|
patch 7.4.1520
Problem: Channel test: Waiting for a file to appear doesn't work.
Solution: In waitFor() ignore errors.
|
2016-03-08 19:07:22 +01:00 |
|
Bram Moolenaar
|
13d6fb17a2
|
patch 7.4.1519
Problem: Channel output to file not implemented for MS-Windows.
Solution: Implement it. (Yasuhiro Matsumoto)
|
2016-03-08 18:40:52 +01:00 |
|
Bram Moolenaar
|
f65333c9b5
|
patch 7.4.1518
Problem: Channel with disconnected in/out/err is not supported.
Solution: Implement it for Unix.
|
2016-03-08 18:27:21 +01:00 |
|
Bram Moolenaar
|
367aabdbf7
|
patch 7.4.1517
Problem: Compiler warning with 64bit compiler.
Solution: Add typecast. (Mike Williams)
|
2016-03-08 17:13:06 +01:00 |
|
Bram Moolenaar
|
8049253b96
|
patch 7.4.1516
Problem: Cannot change file permissions.
Solution: Add setfperm().
|
2016-03-08 17:08:53 +01:00 |
|
Bram Moolenaar
|
9fe885e49a
|
patch 7.4.1515
Problem: Channel test is a bit flaky.
Solution: Instead of a fixed sleep time wait until an expression evaluates
to true.
|
2016-03-08 16:06:55 +01:00 |
|
Bram Moolenaar
|
e98d121052
|
patch 7.4.1514
Problem: Channel output to file not implemented yet.
Solution: Implement it for Unix.
|
2016-03-08 15:37:41 +01:00 |
|