Lie Ryan
Lie Ryan
This is *kinda* expected behavior, or rather undefined behavior. Rope currently assumes that you have a normal package, i.e. you need an `__init__.py` file for a package to be properly...
I've been thinking for the longest time that I should convert these examples to an [asciinema](https://asciinema.org/). That would avoid the need to have these marker texts that freaks out the...
This works for me: ``` ./manage.py lintmigrations --git-commit-id ... --no-cache --warnings-as-errors ``` Also, specifying this in pyproject.toml, like so: ```toml [tool.django_migration_linter] warnings_as_errors = [] ``` I think the documentations can...
Thanks @odnoletkov, @tpope for getting back to me. I've updated the pull request to add `cF` and `cS` mapping as well as all of the fugitive_c, fugitive_cr, and fugitive_cm mappings...
Hi @balazser, thanks for writing this issue. A few questions, what lsp client are you using? Are you using the native Neovim lsp, CoC, vim-lsp, or something else?
Hi @balazser, thanks for clarifying that you're using Neovim's native LSP client. The codeaction support in Neovim's native LSP is very, very buggy. I had already documented some of the...
Hi @climbus, thanks for trying out this project. Can you elaborate a bit by providing a sample code that you're trying to work with, and where your cursor is when...
> When run codeaction-selected with cursor on method invocation, it shows only extract method refactoring. When visual select function name, it shows many refactorings. > > I don't know if...
The current devpi-server installed by docker-devpi also cannot install packages with dots in its name due to https://github.com/pypa/pip/issues/3666
Had same issue with: ``` pyramid==1.4.5 pyramid-debugtoolbar==2.1 ``` I'm also running on uWSGI. When this issue happens, printing `self.environ` shows that it is an empty dictionary. Somehow, the environ dictionary...