Wil Thomason
Wil Thomason
This would be great, and getting completed task info is pretty straightforward with the sync API (e.g. https://github.com/wbthomason/import-todoist.nvim/blob/master/rplugin/python3/todoist_import.py#L17-L45, as an example with the Python sync API library).
Hmm. The ● symbol now isn't showing up, after I rebuilt FVim from the AUR...
Thanks for the tip about `coc.nvim`; I was already setting `suggest.completionItemKindLabels`, but did not know that I couldn't set it to custom symbols or that setting the values you suggest...
Ah, I figured out that the Arch `dotnet-sdk` package is woefully out of date and installed .NET Core 3.1. That let me build from `master`. Sadly, this did not fix...
@yatli There's been some relevant discussion to my original question here over at https://github.com/Kethku/neovide/issues/75. Specifically: - https://github.com/Kethku/neovide/issues/75#issuecomment-579538027 identifies the codepoints causing errors (which I believe were the same for FVim)...
Can you try setting a more verbose log level and running `PackerCompile` again? If that's producing no file, something is seriously wrong, and I'm unable to reproduce the problem. My...
Looking at this a bit more, it's very suspect that `PackerCompile` is producing nothing. Where do you include your specifications? The compile step should *always* either produce a file or...
Sorry, but I'm going to need a bit more information to reproduce this (I've never experienced this error). Can you please describe the sequence of actions you take to trigger...
So it deterministically hangs on all update or sync operations? Starting when? Does this persist if you have `max_jobs` set to something limited, e.g. 1 for the most extreme case?
Ok, so this seems to be a deadlock bug in the async library. The `max_jobs` workaround seems OK for now, but I'll need to dig into the `async` code to...