Daniel Hahler
Daniel Hahler
This would be used in Neovim's tests then to report if the (embedded) child exited non-zero, or due to some signal. To be used in Neovim's tests: https://github.com/neovim/neovim/pull/11203
I've noticed that this fails: `cp -a test/session{,_new}_spec.lua; make test`: ``` [----------] 24 tests from test/session_new_spec.lua (1645.26 ms total) [----------] Running tests from test/session_spec.lua ./nvim/msgpack_rpc_stream.lua:1: attempt to index a userdata...
I'm looking into adding type annotations, and would like to do this for Python 3.5+ then. Both Python 2 and 3.4 are EOL by now, and it might take time...
`v:exception` only contains the first line, and therefore the real error will not be visible in Neovim, e.g. `PermissionDenied`. Adding it to the first line of the message helps. This...
`_on_stderr` does not exist. (found by mypy) I might be missing something here, and it does not appear to be covered with tests.
This can be used by IPython's completion for example. Is the selection sane? Could there be more? AFAICS only functions are supported/used there.
I would like to get to an rplugin's logging output during tests. I am using a `nvim` fixture similar to what neovim-python-client uses in its own tests (https://github.com/Shougo/deoplete.nvim/pull/807/files#diff-f57b4d3a4403d70b647003618269deeaR35). The rplugin...
I am seeing a `RuntimeError: This event loop is already running` when using `log.exception from deoplete-jedi's server. This appears to be caused by DeopleteLogFilter.filter using `self.vim.call('deoplete#util#print_error', record.getMessage(), record.name)`. Full traceback...
The following will not trigger a hit-enter prompt: ``` :py3 import vim; vim.err_write('\n'.join(str(x) for x in range(10))+'\n'); vim.command('redraw'); vim.err_write('last\n') ``` It displays the lines 0-9, then waits for a short...
I've noticed that if the deoplete main process exits with an error it will stay around as a Zombie process. I couldn't reproduce it with a standalone script outside of...