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