summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1520v7.4.1520Bram Moolenaar2016-03-082-3/+8
| | | | | Problem: Channel test: Waiting for a file to appear doesn't work. Solution: In waitFor() ignore errors.
* patch 7.4.1519v7.4.1519Bram Moolenaar2016-03-083-36/+73
| | | | | Problem: Channel output to file not implemented for MS-Windows. Solution: Implement it. (Yasuhiro Matsumoto)
* patch 7.4.1518v7.4.1518Bram Moolenaar2016-03-086-43/+144
| | | | | Problem: Channel with disconnected in/out/err is not supported. Solution: Implement it for Unix.
* patch 7.4.1517v7.4.1517Bram Moolenaar2016-03-082-1/+3
| | | | | Problem: Compiler warning with 64bit compiler. Solution: Add typecast. (Mike Williams)
* patch 7.4.1516v7.4.1516Bram Moolenaar2016-03-085-0/+82
| | | | | Problem: Cannot change file permissions. Solution: Add setfperm().
* patch 7.4.1515v7.4.1515Bram Moolenaar2016-03-082-85/+46
| | | | | | Problem: Channel test is a bit flaky. Solution: Instead of a fixed sleep time wait until an expression evaluates to true.
* patch 7.4.1514v7.4.1514Bram Moolenaar2016-03-084-20/+145
| | | | | Problem: Channel output to file not implemented yet. Solution: Implement it for Unix.
* patch 7.4.1513v7.4.1513Bram Moolenaar2016-03-084-5/+28
| | | | | Problem: "J" fails if there are not enough lines. (Christian Neukirchen) Solution: Reduce the count, only fail on the last line.
* patch 7.4.1512v7.4.1512Bram Moolenaar2016-03-083-13/+35
| | | | | Problem: Channel input from file not supported on MS-Windows. Solution: Implement it. (Yasuhiro Matsumoto)
* patch 7.4.1511v7.4.1511Bram Moolenaar2016-03-082-1/+3
| | | | | Problem: Statusline highlighting is sometimes wrong. Solution: Check for Highlight type. (Christian Brabandt)
* Update runtime files.Bram Moolenaar2016-03-078-183/+229
|
* patch 7.4.1510v7.4.1510Bram Moolenaar2016-03-072-2/+14
| | | | | Problem: Channel test fails on AppVeyor. Solution: Wait longer than 10 msec if needed.
* patch 7.4.1509v7.4.1509Bram Moolenaar2016-03-073-10/+20
| | | | | | Problem: Keeping both a variable for a job and the channel it refers to is a hassle. Solution: Allow passing the job where a channel is expected. (Damien)
* patch 7.4.1508v7.4.1508Bram Moolenaar2016-03-072-1/+7
| | | | | Problem: Can't build GvimExt with MingW. Solution: Adjust the makefile. (Ben Fritz)
* patch 7.4.1507v7.4.1507Bram Moolenaar2016-03-072-1/+4
| | | | | Problem: Crash when starting a job fails. Solution: Check for the channel to be NULL. (idea by Yasuhiro Matsumoto)
* patch 7.4.1506v7.4.1506Bram Moolenaar2016-03-065-15/+85
| | | | | Problem: Job cannot read from a file. Solution: Implement reading from a file for Unix.
* patch 7.4.1505v7.4.1505Bram Moolenaar2016-03-062-1/+19
| | | | | | Problem: When channel log is enabled get too many "looking for messages" log entries. Solution: Only give the message after another message.
* patch 7.4.1504v7.4.1504Bram Moolenaar2016-03-062-0/+79
| | | | | Problem: No test for reading last-but-one line. Solution: Add a test.
* patch 7.4.1503v7.4.1503Bram Moolenaar2016-03-063-1/+12
| | | | | Problem: Crash when using ch_getjob(). (Damien) Solution: Check for a NULL job.
* patch 7.4.1502v7.4.1502Bram Moolenaar2016-03-065-59/+168
| | | | | | Problem: Writing last-but-one line of buffer to a channel isn't implemented yet. Solution: Implement it. Fix leaving a swap file behind.
* patch 7.4.1501v7.4.1501Bram Moolenaar2016-03-062-0/+5
| | | | | Problem: Garbage collection with an option channel is not tested. Solution: Call garbagecollect() in the test.
* patch 7.4.1500v7.4.1500Bram Moolenaar2016-03-062-2/+4
| | | | | Problem: Should_free flag set to FALSE. Solution: Set it to TRUE. (Neovim 4415)
* patch 7.4.1499v7.4.1499Bram Moolenaar2016-03-066-12/+36
| | | | | Problem: No error message when :packadd does not find anything. Solution: Add an error message. (Hirohito Higashi)
* patch 7.4.1498v7.4.1498Bram Moolenaar2016-03-052-0/+3
| | | | | Problem: Error for locked item when using json_decode(). (Shougo) Solution: Initialize v_lock.
* patch 7.4.1497v7.4.1497Bram Moolenaar2016-03-052-9/+26
| | | | | Problem: Cursor drawing problem with GTK 3. Solution: Handle blinking differently. (Kazunobu Kuriyama)
* patch 7.4.1496v7.4.1496Bram Moolenaar2016-03-052-2/+7
| | | | | Problem: Crash when built with GUI but it's not active. (Dominique Pelle) Solution: Check gui.in_use.
* patch 7.4.1495v7.4.1495Bram Moolenaar2016-03-052-10/+7
| | | | | | Problem: Compiler warnings when building on Unix with the job feature but without the channel feature. Solution: Move #ifdefs. (Dominique Pelle)
* patch 7.4.1494v7.4.1494Bram Moolenaar2016-03-054-0/+69
| | | | | Problem: clr_history() does not work properly. Solution: Increment hisptr. Add a test. (Yegappan Lakshmanan)
* patch 7.4.1493v7.4.1493Bram Moolenaar2016-03-054-6/+79
| | | | | | Problem: Wrong callback invoked for zero-id messages. Solution: Don't use the first one-time callback when the sequence number doesn't match.
* patch 7.4.1492v7.4.1492Bram Moolenaar2016-03-055-0/+86
| | | | | Problem: No command line completion for ":packadd". Solution: Implement completion. (Hirohito Higashi)
* Add new test file.Bram Moolenaar2016-03-051-0/+19
|
* patch 7.4.1491v7.4.1491Bram Moolenaar2016-03-053-1/+12
| | | | | Problem: Visual-block shift breaks multi-byte characters. Solution: Compute column differently. (Yasuhiro Matsumoto) Add a test.
* patch 7.4.1490v7.4.1490Bram Moolenaar2016-03-042-0/+4
| | | | | Problem: Compiler warning for unused function. Solution: Add #ifdef. (Dominique Pelle)
* patch 7.4.1489v7.4.1489Bram Moolenaar2016-03-042-1/+3
| | | | | Problem: "inline" is not supported by old MSVC. Solution: use "__inline". (Ken Takata)
* patch 7.4.1488v7.4.1488Bram Moolenaar2016-03-042-11/+13
| | | | | Problem: Not using key when result from hangul_string_convert() is NULL. Solution: Fall back to not converted string.
* Update runtime files.Bram Moolenaar2016-03-0410-160/+408
|
* patch 7.4.1487v7.4.1487Bram Moolenaar2016-03-042-1/+3
| | | | | Problem: For WIN32 isinf() is defined as a macro. Solution: Define it as an inline function. (ZyX)
* patch 7.4.1486v7.4.1486Bram Moolenaar2016-03-046-103/+107
| | | | | Problem: ":loadplugin" is not optimal, some people find it confusing. Solution: Only use ":packadd" with an optional "!".
* patch 7.4.1485v7.4.1485Bram Moolenaar2016-03-038-22/+175
| | | | | Problem: Job input from buffer is not implemented. Solution: Implement it. Add "in-top" and "in-bot" options.
* patch 7.4.1484v7.4.1484Bram Moolenaar2016-03-035-16/+60
| | | | | Problem: Channel "err-io" value "out" is not supported. Solution: Connect stderr to stdout if wanted.
* patch 7.4.1483v7.4.1483Bram Moolenaar2016-03-034-17/+101
| | | | | Problem: A one-time callback is not used for a raw channel. Solution: Use a one-time callback when it exists.
* patch 7.4.1482v7.4.1482Bram Moolenaar2016-03-033-19/+28
| | | | | Problem: "timeout" option not supported on ch_send*() and ch_eval*(). Solution: Get and use the timeout option from the argument.
* patch 7.4.1481v7.4.1481Bram Moolenaar2016-03-032-0/+8
| | | | | Problem: Can't build with small features. Solution: Add #ifdef.
* patch 7.4.1480v7.4.1480Bram Moolenaar2016-03-036-53/+122
| | | | | Problem: Cannot add a pack direcory without loading a plugin. Solution: Add the :packadd command.
* patch 7.4.1479v7.4.1479Bram Moolenaar2016-03-034-4/+32
| | | | | Problem: No testfor ":loadplugin". Solution: Add a test. Fix how option is being set.
* patch 7.4.1478v7.4.1478Bram Moolenaar2016-03-032-3/+30
| | | | | Problem: ":loadplugin" doesn't take care of ftdetect files. Solution: Also load ftdetect scripts when appropriate.
* patch 7.4.1477v7.4.1477Bram Moolenaar2016-03-032-14/+29
| | | | | Problem: Test_reltime is flaky, it depends on timing. Solution: When it fails run it a second time.
* patch 7.4.1476v7.4.1476Bram Moolenaar2016-03-036-10/+12
| | | | | Problem: Function arguments marked as unused while they are not. Solution: Remove UNUSED. (Yegappan Lakshmanan)
* patch 7.4.1475v7.4.1475Bram Moolenaar2016-03-032-4/+14
| | | | | | Problem: When using hangulinput with utf-8 a CSI character is misintepreted. Solution: Convert CSI to K_CSI. (SungHyun Nam)
* patch 7.4.1474v7.4.1474Bram Moolenaar2016-03-022-3/+5
| | | | | Problem: Compiler warnings without the float feature. Solution: Move #ifdefs. (John Marriott)