Age | Commit message (Collapse) | Author |
|
Problem: It is not easy to find out what windows display a buffer.
Solution: Add win_findbuf().
|
|
Problem: Windows cannot be identified.
Solution: Add a unique window number to each window and functions to use it.
|
|
Problem: "make install" changes the help tags file, causing it to differ
from the repository.
Solution: Move it aside and restore it.
|
|
Problem: List of test targets incomplete.
Solution: Add newly added tests.
|
|
Problem: Completion for :colorscheme does not use 'packpath'.
Solution: Make it work, add a test. (Hirohito Higashi)
|
|
Problem: ":runtime" does not use 'packpath'.
Solution: Add "what" argument.
|
|
Problem: ":colorscheme" does not use 'packpath'.
Solution: Also use in "start" and "opt" directories in 'packpath'.
|
|
Problem: Cannot generate help tags in all doc directories.
Solution: Make ":helptags ALL" work.
|
|
Problem: Cannot load packages early.
Solution: Add the ":packloadall" command.
|
|
Problem: Test for syntax attributes fails in Win32 GUI.
Solution: Use an existing font name.
|
|
Problem: Two tests fail.
Solution: Adjust the expected error number. Remove check for type.
|
|
Problem: Getting a cterm highlight attribute that is not set results in the
string "-1".
Solution: Return an empty string. (Taro Muraoka)
|
|
Problem: Sticky type checking is more annoying than useful.
Solution: Remove the error for changing a variable type.
|
|
Problem: GTK3: horizontal cursor movement in Visual selection not good.
Solution: Make it work better. (Kazunobu Kuriyama)
|
|
Problem: On Win32 escaping the command does not work properly.
Solution: Reset 'ssl' when escaping the command. (Yasuhiro Matsumoto)
|
|
Problem: Channel log methods are not tested.
Solution: Log job activity and check it.
|
|
Problem: job_start() with a list is not tested.
Solution: Call job_start() with a list.
|
|
Problem: Missing job_info().
Solution: Implement it.
|
|
Problem: Channel test is a bit flaky.
Solution: Increase expected wait time.
|
|
Problem: Too much code in eval.c.
Solution: Move job and channel code to channel.c.
|
|
|
|
Problem: Selection with the mouse does not work in command line mode.
Solution: Use cairo functions. (Kazunobu Kuriyama)
|
|
Problem: Too many feature flags for pipes, jobs and channels.
Solution: Only use FEAT_JOB_CHANNEL.
|
|
Problem: Cannot re-use a channel for another job.
Solution: Add the "channel" option to job_start().
|
|
Problem: The feedkeys test has a one second delay.
Solution: Avoid need_wait_return() to delay. (Hirohito Higashi)
|
|
Problem: Compiler warning for shadowed variable. (Kazunobu Kuriyama)
Solution: Rename it.
|
|
Problem: Using feedkeys() with an empty string disregards 'x' option.
Solution: Make 'x' work with an empty string. (Thinca)
|
|
Problem: MS-Windows channel leaks file descriptor.
Solution: Use CreateFile with the right options. (Yasuhiro Matsumoto)
|
|
Problem: Compiler warning for unitinialized variable. (Dominique Pelle)
Solution: Always give the variable a value.
|
|
Problem: MS-Windows job_start() closes wrong handle.
Solution: Close hThread on the process info. (Ken Takata)
|
|
Problem: Specifying buffer number for channel not implemented yet.
Solution: Implement passing a buffer number.
|
|
Problem: Using "ever" for packages is confusing.
Solution: Use "start", as it's related to startup.
|
|
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.
|
|
Problem: Writing to file and not connecting a channel doesn't work for
MS-Windows.
Solution: Make it work. (Yasuhiro Matsumoto)
|
|
Problem: On a high resolution screen the toolbar icons are too small.
Solution: Add "huge" and "giant" to 'toolbariconsize'. (Brian Gix)
|
|
Problem: Channel test fails on BSD.
Solution: Break out of the loop when connect() succeeds. (Ozaki Kiichi)
|
|
Problem: Writing channel to a file fails on MS-Windows.
Solution: Disable it for now.
|
|
Problem: Cannot write channel err to a buffer.
Solution: Implement it.
|
|
Problem: File permission test fails on MS-Windows.
Solution: Expect a different permission.
|
|
Problem: Channel test: Waiting for a file to appear doesn't work.
Solution: In waitFor() ignore errors.
|
|
Problem: Channel output to file not implemented for MS-Windows.
Solution: Implement it. (Yasuhiro Matsumoto)
|
|
Problem: Channel with disconnected in/out/err is not supported.
Solution: Implement it for Unix.
|
|
Problem: Compiler warning with 64bit compiler.
Solution: Add typecast. (Mike Williams)
|
|
Problem: Cannot change file permissions.
Solution: Add setfperm().
|
|
Problem: Channel test is a bit flaky.
Solution: Instead of a fixed sleep time wait until an expression evaluates
to true.
|
|
Problem: Channel output to file not implemented yet.
Solution: Implement it for Unix.
|
|
Problem: "J" fails if there are not enough lines. (Christian Neukirchen)
Solution: Reduce the count, only fail on the last line.
|
|
Problem: Channel input from file not supported on MS-Windows.
Solution: Implement it. (Yasuhiro Matsumoto)
|
|
Problem: Statusline highlighting is sometimes wrong.
Solution: Check for Highlight type. (Christian Brabandt)
|
|
|