Andy Freeland
Andy Freeland
Interesting, it must be an interaction between plugins or something… I’ll try debugging more
I can still reproduce with a minimal set of plugins: ```vim Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate', 'branch': '0.5-compat'} Plug 'p00f/nvim-ts-rainbow' ``` What looks different in your recording is that you're autocompleting...
And this is my Treesitter config: ```vim lua
Per #254, it seems like this might only be a problem with HTTPS, at least with eventlet/gevent. We use HTTPretty through moto, and once we started connecting with `is_secure=False`, we...
Has anyone come up with a workaround for this?
I handle this by emptying the legend element and creating a new legend: ``` javascript $('#legend_container').empty(); legend = new Rickshaw.Graph.Legend({ graph: graph, element: document.getElementById('legend_container') }); ``` I add this to...
Now that #109 is merged, any chance of uploading wheels for 2.2.0?
> Does this happen on an opensource project I could look at? Working on extracting something, will post a repo once I'm done. > Also, how do you use xdist?...
I can reproduce the "Coverage.py warning: No data was collected" with https://github.com/rouge8/xdist-cov/tree/225d5a0ed417420e185470c6ef40bc2b2b24d2a9, although that reports 100% coverage. I'm looking into what lines are uncovered with xdist in the actual project...
> Can you elaborate about the line difference in your original project? What exactly is not getting covered? It looks like it's mostly declarative code (e.g. SQLAlchemy models), function defs,...