summaryrefslogtreecommitdiff
path: root/src/os_unix.c
AgeCommit message (Collapse)Author
2016-08-17patch 7.4.2223Bram Moolenaar
Problem: Buffer overflow when using latin1 character with feedkeys(). Solution: Check for an illegal character. Add a test.
2016-08-14patch 7.4.2211Bram Moolenaar
Problem: Mouse support is not automatically enabled with simple term. Solution: Recognize "st" and other names. (Manuel Schiller, closes #963)
2016-07-16patch 7.4.2054Bram Moolenaar
Problem: Wrong part of #ifdef removed. Solution: Use the right part. (Hirohito Higashi)
2016-07-16patch 7.4.2048Bram Moolenaar
Problem: There is still code and help for unsupported systems. Solution: Remove the code and text. (Hirohito Higashi)
2016-07-01patch 7.4.1972Bram Moolenaar
Problem: On Solaris select() does not work as expected when there is typeahead. Solution: Add ICANON when sleeping. (Ozaki Kiichi)
2016-06-10patch 7.4.1914Bram Moolenaar
Problem: Executing autocommands while using the signal stack has a high chance of crashing Vim. Solution: Don't invoke autocommands when on the signal stack.
2016-06-04patch 7.4.1888Bram Moolenaar
Problem: Wrong computation of remaining wait time in RealWaitForChar() Solution: Remember the original waiting time.
2016-06-04patch 7.4.1887Bram Moolenaar
Problem: When receiving channel data 'updatetime' is not respected. Solution: Recompute the waiting time after being interrupted.
2016-06-04patch 7.4.1886Bram Moolenaar
Problem: When waiting for a character is interrupted by receiving channel data and the first character of a mapping was typed, the mapping times out. (Ramel Eshed) Solution: When dealing with channel data don't return from mch_inchar().
2016-06-02patch 7.4.1878Bram Moolenaar
Problem: Whether a job has exited isn't detected until a character is typed. After calling exit_cb the cursor is in the wrong place. Solution: Don't wait forever for a character to be typed when there is a pending job. Update the screen if neede after calling exit_cb.
2016-05-08patch 7.4.1822Bram Moolenaar
Problem: Redirecting stdout of a channel to "null" doesn't work. (Nicola) Solution: Correct the file descriptor number.
2016-04-26patch 7.4.1790Bram Moolenaar
Problem: Leading white space in a job command matters. (Andrew Stewart) Solution: Skip leading white space.
2016-04-21patch 7.4.1765Bram Moolenaar
Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson)
2016-04-20patch 7.4.1759Bram Moolenaar
Problem: When using feedkeys() in a timer the inserted characters are not used right away. Solution: Break the wait loop when characters have been added to typebuf. use this for testing CursorHoldI.
2016-04-04patch 7.4.1710Bram Moolenaar
Problem: Not all output of an external command is read. Solution: Avoid timing out when the process has exited. (closes #681)
2016-03-28patch 7.4.1669Bram Moolenaar
Problem: When writing buffer lines to a pipe Vim may block. Solution: Avoid blocking, write more lines later.
2016-03-26patch 7.4.1659Bram Moolenaar
Problem: Compiler warning for argument type. (Manuel Ortega) Solution: Remove "&".
2016-03-26patch 7.4.1657Bram Moolenaar
Problem: On Unix in a terminal: channel messages are not handled right away. (Jackson Alves de Aquino) Solution: Break the loop for timers when something was received.
2016-03-20patch 7.4.1625Bram Moolenaar
Problem: Trying to close file descriptor that isn't open. Solution: Check for negative number.
2016-03-19patch 7.4.1595Bram Moolenaar
Problem: Not checking for failed open(). (Coverity) Solution: Check file descriptor not being negative.
2016-03-19patch 7.4.1594Bram Moolenaar
Problem: Timers don't work on Unix. Solution: Add missing code.
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-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.1514Bram Moolenaar
Problem: Channel output to file not implemented yet. Solution: Implement it for Unix.
2016-03-06patch 7.4.1506Bram Moolenaar
Problem: Job cannot read from a file. Solution: Implement reading from a file for Unix.
2016-03-05patch 7.4.1495Bram Moolenaar
Problem: Compiler warnings when building on Unix with the job feature but without the channel feature. Solution: Move #ifdefs. (Dominique Pelle)
2016-03-03patch 7.4.1485Bram Moolenaar
Problem: Job input from buffer is not implemented. Solution: Implement it. Add "in-top" and "in-bot" options.
2016-03-03patch 7.4.1484Bram Moolenaar
Problem: Channel "err-io" value "out" is not supported. Solution: Connect stderr to stdout if wanted.
2016-03-02patch 7.4.1472Bram Moolenaar
Problem: Coverity warning for not using return value. Solution: Add "(void)".
2016-02-29patch 7.4.1460Bram Moolenaar
Problem: Syntax error in rarily used code. Solution: Fix the mch_rename() declaration. (Ken Takata)
2016-02-27patch 7.4.1433Bram Moolenaar
Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
2016-02-25patch 7.4.1418Bram Moolenaar
Problem: job_stop() on MS-Windows does not really stop the job. Solution: Make the default to stop the job forcefully. (Ken Takata) Make MS-Windows and Unix more similar.
2016-02-18patch 7.4.1350Bram Moolenaar
Problem: When the test server fails to start Vim hangs. Solution: Check that there is actually something to read from the tty fd.
2016-02-16patch 7.4.1341Bram Moolenaar
Problem: It's difficult to add more arguments to ch_sendraw() and ch_sendexpr(). Solution: Make the third option a dictionary.
2016-02-16patch 7.4.1338Bram Moolenaar
Problem: Another part of the change is missing. Solution: Type os_unix.c right this time.
2016-02-15patch 7.4.1328Bram Moolenaar
Problem: Can't compile with +job but without +channel. (John Marriott) Solution: Add more #ifdefs.
2016-02-14patch 7.4.1319Bram Moolenaar
Problem: Tests fail on MS-Windows and on Unix with GUI. Solution: Fix unregistering.
2016-02-14patch 7.4.1318Bram Moolenaar
Problem: Channel with pipes doesn't work in GUI. Solution: Register input handlers for pipes.
2016-02-13patch 7.4.1315Bram Moolenaar
Problem: Using a channel handle does not allow for freeing it when unused. Solution: Add the Channel variable type.
2016-02-13patch 7.4.1310Bram Moolenaar
Problem: Jobs don't open a channel. Solution: Create pipes and add them to the channel. Add ch_logfile(). Only Unix for now.
2016-02-12patch 7.4.1306Bram Moolenaar
Problem: Job control doesn't work well on MS-Windows. Solution: Various fixes. (Ken Takata, Ozaki Kiichi , Yukihiro Nakadaira, Yasuhiro Matsumoto)
2016-02-09patch 7.4.1294Bram Moolenaar
Problem: job_stop() only kills the started process. Solution: Send the signal to the process group. (Olaf Dabrunz)
2016-02-07patch 7.4.1274Bram Moolenaar
Problem: Cannot run a job. Solution: Add job_start(), job_status() and job_stop(). Currently only works for Unix.
2016-01-31patch 7.4.1225Bram Moolenaar
Problem: Still a few old style function declarations. Solution: Make them new style. (Hirohito Higashi)
2016-01-30patch 7.4.1213Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1200Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-29patch 7.4.1199Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-27patch 7.4.1186Bram Moolenaar
Problem: Error messages for security context are hard to translate. Solution: Use one string with %s. (Ken Takata)
2016-01-24patch 7.4.1169Bram Moolenaar
Problem: The socket I/O is intertwined with the netbeans code. Solution: Start refactoring the netbeans communication to split off the socket I/O. Add the +channel feature.