Jongwook Choi
Jongwook Choi
Have you taken a look at the `lsof` log above? What is being increased linearly is the following files (i.e. every iteration): ``` python3.6/site-packages/deepmind_lab/baselab/assets.pk3 python3.6/site-packages/deepmind_lab/baselab/assets_bots.pk3 python3.6/site-packages/deepmind_lab/baselab/assets_oa.pk3 python3.6/site-packages/deepmind_lab/baselab/vm.pk3 ``` From a...
Okay, I will try to use debuggers to identify the leak and let you know when some clue is found. Thanks!
This plugin (or precisely the imap ) also breaks [vim-clap](https://github.com/liuchengxu/vim-clap). Is there any general solution that is agnostic of other plugins but preserves the mapping chian?
Can we use something like `TypeVar` (instead of string literal for the type annotation) instead? e.g. ``` Batch = typing.TypeVar def example(foo: TensorType[Batch]): pass ``` or ``` Batch = torchtyping.AxisVar("Batch")...
My two cents: Isn't this too specific to have for nvim-dap-python? I don't think the testing framework choice (https://github.com/behave/behave) here is quite usual, compared to popular unit test runners (standard...
[neovim/neovim@`c86d5fa` (#11390)](https://github.com/neovim/neovim/pull/11390/commits/c86d5fa981b0651167f789aaff685b42cad7aaca) seems to be the culprit: stderr gets closed immediately and this causes the event loop to stop. See PR #543 for the fix.
I checked this issue and can confirm that this has fixed in pynvim 0.5.0-devel (unreleased yet). The workarounds above are valid for pynvim 0.4.3 (and would still be needed for...
Actually at the moment, this line will be never called (until neovim's `--embed` RPC starts to write something on stderrs). This can be superseded by #543.
This was fixed by #543.
Since neovim v0.4.0 `v:exception` is a multi-line string and therefore contains all the stacktrace information (the upstream issue was fixed), so I think we'd no longer this. (Sorry for bumping...