aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | Merge pull request #3166 from justinmk/file_is_readableJustin M. Keyes2015-08-17
|\ \ \ | | | | | | | | os_file_is_readable()
| * | | os_file_is_*: libuv implJustin M. Keyes2015-08-17
| | | | | | | | | | | | | | | | | | | | | | | | - uv_fs_access() is far more robust than access(). In particular, it handles utf16 paths (Windows). - Still need R_OK, W_OK in win_defs.h
| * | | win_defs.h: define R_OK, W_OK for MSVC.Rui Abreu Ferreira2015-08-17
| | | |
| * | | test: cover os_file_is_readable()Justin M. Keyes2015-08-17
| | | |
| * | | fs.c: implement os_file_is_readable()Justin M. Keyes2015-08-17
|/ / / | | | | | | | | | | | | | | | | | | Use access() because: - We already use it for os_file_is_writable() - Vim's old check_file_readonly() ends up using access() after all.
* | | tutor: avoid 'wildignore' painJustin M. Keyes2015-08-16
| | |
* | | Merge pull request #3179 from ZyX-I/clint-find-new-errorsJustin M. Keyes2015-08-16
|\ \ \ | | | | | | | | Add ability to suppress errors to clint.py
| * | | vim.h: Fix error which is not suppressed by clintZyX2015-08-16
| | | |
| * | | clint: Add support for errors suppressionZyX2015-08-15
| | | |
* | | | rstream.c: Prevent stream closing if a read event is still queued. #3172oni-link2015-08-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Processing a stream's output can be queued. If stream_close() is called before the queue is processed, the RBuffer containing the stream's data is freed and the next read event would try to access freed memory. To fix this behavior, use the stream's pending requests counter.
* | | | Remove unused assignement #3173Pepe Padial2015-08-16
| | | | | | | | | | | | | | | | | | | | Based on this report http://neovim.io/doc/reports/clang/report-808d3e.html#EndPath
* | | | install tutorial files #3180Felipe Morales2015-08-16
| | | |
* | | | Add introductory text to intro screen. #1885Florian Walch2015-08-15
| | | |
* | | | Merge pull request #2700 from fmoralesc/vim-tutor-modeJustin M. Keyes2015-08-15
|\ \ \ \ | | | | | | | | | | runtime: Include vim-tutor-mode
| * | | | runtime: Include vim-tutor-modeFelipe Morales2015-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-tutor-mode provides a mechanism to write and read interactive tutorials in vim. It's aim is to replace the venerable vimtutor with a more modern system. The plugin's development is maintained at https://github.com/fmoralesc /vim-tutor-mode Closes #2351.
* | | | | tui: restore got_winch in sigwinch_cb #3171Felipe Morales2015-08-15
| |/ / / |/| | | | | | | | | | | Fixes minor regression from #3145.
* | | | Merge PR #3029 'Refactor event processing architecture'Thiago de Arruda2015-08-13
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Helped-by: oni-link <knil.ino@gmail.com> Reviewed-by: oni-link <knil.ino@gmail.com>
| * | | | eval: Fix jobwait() to process multiple jobs concurrentlyThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new event processing architecture changed `jobwait()` semantics: Only one job is processed at time since process_wait only focuses on one queue. This fixes the problem with a few changes: - Allow the event queue polled by `process_wait` to be overriden by a new argument. - Allow the parent queue to be overriden with `queue_replace_parent` - Create a temporary queue that serves as the parent for all jobs passed to `jobwait()`
| * | | | pty_process: Make termios structure a static variableThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | The structure has a constant initializer and is only used for reading.
| * | | | rstream: Pass read count to read eventsThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | This is necessary to keep events in the same order received from the OS.
| * | | | process: Remove indeterminism that causes reordering of pty eventsoni-link2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since pty events are queued, it is possible that the reads will be reordered. Example scenario: In the terminal you have output combined from stdout and stderr. A program generates output, first you have some output on stdout, then output on stderr, output on stdout, output on stderr,... The whole output should be interleaved from both streams. Each output generates a read_event and they are placed in the same queue. If the queue is processed, the first read_event will send the whole stdout output to the terminal (on_job_output() consumes the whole buffer). The next read_event is similar for stderr. The remaining read events do nothing because now both RBuffer are already empty. So the terminal would show first the stdout output and after that the stderr output. This commit fixes the problem by disabling stderr stream in pty processes. That's ok because they all represent the same stream(duplicate file descriptors), plus one stream is simpler to deal with.
| * | | | event: Refactor async event processingThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Improve the implementation of deferred/immediate events. - Use the new queue module to change how/when events are queued/processed by giving a private queue to each emitter. - Immediate events(which only exist to break uv_run recursion) are now represented in the `loop->fast_events` queue. - Events pushed to child queues are propagated to the event loop main queue and processed as K_EVENT keys.
| * | | | queue: Implement a more flexible event queueThiago de Arruda2015-08-13
| | | | |
| * | | | lib: Include libuv circularly linked listThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | This is simpler and more efficient than klist.h for implementing queues that support insertion or removal at arbitrary positions.
| * | | | test: Make sure ENTER prompt is exited in clipboard_provider_specThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | The test may hang without this.
| * | | | terminal: Ensure terminal buffers are flushed on exitThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | When a terminal closed, make sure it is refreshed before the Terminal structure is freed. Also extract `refresh_terminal` from `on_refresh`.
| * | | | process: Pass loop reference during initializationThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | Change the API so that it is passed to {uv,pty}_process_init instead of `process_spawn`.
| * | | | loop: Simplify loop.c and move some code to input.cThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Declare poll timer in Loop structure instead of a loop_poll_events local variable. - Move deferred event management to input.c
| * | | | msgpack: Replace FUNC_ATTR_DEFERRED by FUNC_ATTR_ASYNCThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | API functions exposed via msgpack-rpc now fall into two categories: - async functions, which are executed as soon as the request is parsed - sync functions, which are invoked in nvim main loop when processing the `K_EVENT special key Only a few functions which can be safely executed in any context are marked as async.
| * | | | pty_process: Simplify cleanup after error during spawnThiago de Arruda2015-08-13
| | | | |
| * | | | eval: Fixes to job controlThiago de Arruda2015-08-13
| | | | | | | | | | | | | | | | | | | | | | | | | - Ensure TerminalJobData is freed in case of error when spawning pty jobs - Check if job was stopped in every function that receives a job id.
| * | | | events: Add missing function attributes to some APIsThiago de Arruda2015-08-13
|/ / / /
* | | | doc: Fix typo in nvim-python. #3162Daniel Kosinski2015-08-12
| | | |
* | | | runtime: Do install generated syntax file, also test this. #3160ZyX2015-08-11
| | | | | | | | | | | | | | | | Fixes #3157
* | | | test: cover :grepJustin M. Keyes2015-08-11
| | | | | | | | | | | | | | | | References #3156
* | | | shell.c: A full RBuffer with no NL can freeze shell output. #3156oni-link2015-08-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | out_data_cb() can return without emptying the full RBuffer (no NL was seen). Because the shell output stream is stopped until space in the Rbuffer is freed up, no more shell output is written. To prevent this, output the full RBuffer when write_output() did not write anything. write_output() can also process the same RBuffer content more than once, if no NL was seen. To prevent NUL bytes from producing new lines (if lines are not written to a buffer), translate NUL to SOH(1). Fixes #2983
* | | | tui: avoid double-resize on SIGWINCH. #3145Felipe Morales2015-08-10
| | | |
* | | | Merge #3149 'Fix pending() invocations'.Justin M. Keyes2015-08-09
|\ \ \ \
| * | | | test: fix pending() invocationsJustin M. Keyes2015-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | AFAICT busted does not report pending() invocations without the 2nd argument.
| * | | | test: move runtime/autoload/* to provider/Justin M. Keyes2015-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | - Organize tests by logical function, not the literal impl location. - Avoid deep nesting / hyper-hierarchy.
| * | | | test: python: report pending() if python{2,3} is missingJustin M. Keyes2015-08-09
|/ / / /
* | | | vim-patch:7.4.781 #3065Marco Hinz2015-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: line2byte() returns one less when 'bin' and 'noeol' are set. Solution: Only adjust the size for the last line. (Rob Wu) Original patch: https://code.google.com/p/vim/source/detail?r=30c9301f33ed76d0b76b9e22362f5e78e26786da
* | | | vim-patch:7.4.773 #3066Marco Hinz2015-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: 'langmap' is used in command-line mode when checking for mappings. Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez) Original patch: https://code.google.com/p/vim/source/detail?r=5b1eefbf9a532f32a66fa13abbd671488aaafd5c
* | | | vim-patch:7.4.776 #3062Marco Hinz2015-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Equivalence class for 'd' does not work correctly. Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle) Original patch: https://code.google.com/p/vim/source/detail?r=94b17958585153641ad1e813fa144cad57c7170f
* | | | Merge #3141 'handle clipboard=unnamedplus,unnamed correctly'.Justin M. Keyes2015-08-09
|\ \ \ \
| * | | | clipboard: remove documentation for unsupported optionsBjörn Linse2015-08-07
| | | | | | | | | | | | | | | | | | | | Both these were relevant only to the old gui implementation.
| * | | | clipboard: support clipboard=unnamedplus,unnamedBjörn Linse2015-08-07
| | | | |
| * | | | clipboard: fixup inconsequential yet embarrassing mixupBjörn Linse2015-08-06
|/ / / /
* | | | test: cover msgpackparse() regressionJustin M. Keyes2015-08-05
| | | |
* | | | Merge #3135 'Use proper refcount of msgpack type lists'.Justin M. Keyes2015-08-05
|\ \ \ \