DeeeeLAN
DeeeeLAN
This is what I see: ``` local/wlroots 0.17.0-1 Modular Wayland compositor library local/wlroots0.15 0.15.1-5 Modular Wayland compositor library local/wlroots0.16 0.16.2-2 Modular Wayland compositor library ```
`pacman -Qs`
There is also `python_pywlroots`: ``` > pacman -Qs wlroots local/python-pywlroots 0.16.6-2 Python binding to the wlroots library using cffi local/wlroots 0.17.0-1 Modular Wayland compositor library local/wlroots0.15 0.15.1-5 Modular Wayland compositor...
Thanks, I missed the comments somehow but I finally circled back to this and got myself updated.
@rosshemsley If you are open to giving me write access, I would be happy to help maintain this package and merge in the rest of the pull requests.
Combined all other outstanding merge requests into this one.
I am interested in this enhancement as well. Emacs behaves by ignoring the previous path if it finds `//` or `/~` in the entry field.
Fixed in #36 if it ever gets merged.
Set your xExtents like this: ``` const start = xAccessor(last(linearData)); const xExtents = [start, 0] ```
Here is the workaround I am using: ```python if not os.path.lexists(cachefile): cd.CacheDebug('CacheRetrieve(%s): %s not in cache\n', t, cachefile) return 1 # ... if SCons.Action.execute_action: if fs.islink(cachefile): fs.symlink('...') else: cd.copy_from_cache('...') #......