Grant Welch
Grant Welch
When I was playing with the "passing_floor" event, I had expected "direction" to be the state of the illuminated buttons for the floor. I don't think that's as absurd as...
I'm experienced this same issue _only_ when I open vim from 'git config --edit' because git was opening the OSX distributed version of 'vim'. I changed my core.editor setting to...
Maybe there is a change that affected one of the later patches in 7.3!? If so, that would make recent bufexplorer dependent on that patch (assuming one exists). Looking at:...
Based on the descriptions, it looks like patches 1261 and 1264 are necessary to get bufexplorer to work properly with . http://ftp.vim.org/pub/vim/patches/7.3/7.3.1261 http://ftp.vim.org/pub/vim/patches/7.3/7.3.1264 I checked the history of the project...
@uranusjr, @techalchemy: [PEEP-001](https://github.com/pypa/pipenv/blob/516c86cd4911d303aba7f73764abb53a61f9a6bc/peeps/PEEP-001.md) is a bit ambiguous about starting the PEEP process. Should I just create PEEP-003 in a local branch and submit a PR? It would seem that this...
@marco-silva0000: Sorry, no. I haven't taken the opportunity to write-up the PEP for my own request. If you have the need and motivation to start the write up, then I'll...
> I wish I'd been cognizant of this when I first wrote it. Changing this now will be backwards incompatible, but I'm probably still the biggest user of this (in...
Oh, and check for `relaxed` in `pytest_configure`: https://github.com/bitprophet/pytest-relaxed/blob/8e4d698e92b4fb2d7af7b1ae8c7e2f0ee6fe66da/pytest_relaxed/plugin.py#L34-L44 ```python def pytest_conifgure(config): if (config.getoption('collectonly') or config.getoption('markers') or config.getoption('showfixtures')): pass elif not config.getoption('relaxed'): return ... ``` Edit: Added condition for `collectonly`, etc.
~~I'm seeing this as well. My default softtabstop=2 and shiftwidth=2, but before instally vim-flake8, python files the default python ftplugin to change both settings to =4. After flake8, **it seems...