Austin Bingham
Austin Bingham
(My "short response" has turned into a bit of a rambling thinking-out-loud...) It _might_ be possible, but I'm not sure how much work it would take. The first issue I...
Also, does EIN work well for you? I've tried it a few times, and I always run into strange hangs and stuff. I'd _love_ to be able to work with...
I thought about this a bit more, and one complication is how we'll report our position to ycmd. To get completions, we send to ycmd the code itself as well...
> If I disable ycmd-mode I do not have this issue. Do you mean that when `ycmd-mode` is disabled completion works perfectly and with good performance? Or that completion doesn't...
`ycmd-force-semantic-completion` is probably the issue. For large enough C++ projects, ycmd's delay to get true semantic completion can be substantial, so that's probably what you're running into. What a lot...
It might help if you post any config files that you think are incident: .ycm_extra_conf.py, any emacs configuration, etc. This kind of completion works just fine on many systems, including...
My guess is that the desktop code is executing before you set `ycmd-server-command`. You'll notice in the error that it's referencing "/path/to/ycmd/package", which is the default value for `ycmd-server-command` (and...
Is this being looked into, or is homu.io just broken for the foreseeable future?
I get the same error when I try to 'concat' multiple identical lavfi streams: ``` # bug.py import ffmpeg BLACK_1 = ffmpeg.input( "color=black:s=800x600", format="lavfi", ) BLACK_2 = ffmpeg.input( "color=black:s=800x600", format="lavfi",...
And FWIW, I was able to make this problem go away but putting labels on my inputs: ``` BLACK_1 = ffmpeg.input( "color=black:s=800x600", format="lavfi", label='black_1', ) BLACK_2 = ffmpeg.input( "color=black:s=800x600", format="lavfi",...